aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rw-r--r--misc/old_demos/demo008.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/old_demos/demo008.odin b/misc/old_demos/demo008.odin
index 7916cd5e9..a122414e7 100644
--- a/misc/old_demos/demo008.odin
+++ b/misc/old_demos/demo008.odin
@@ -98,7 +98,7 @@ general_stuff :: proc() {
{ // `distinct` types
// Originally, all type declarations would create a distinct type unless #type_alias was present.
// Now the behaviour has been reversed. All type declarations create a type alias unless `distinct` is present.
- // If the type expression is `struct`, `union`, `enum`, `proc`, or `bit_field`, the types will always been distinct.
+ // If the type expression is `struct`, `union`, `enum`, or `proc`, the types will always been distinct.
Int32 :: i32;
#assert(Int32 == i32);