aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-02-19 11:31:14 +0000
committergingerBill <bill@gingerbill.org>2021-02-19 11:31:14 +0000
commitefdee0dafb2b7568242173cb4549aba32f6f9e75 (patch)
treecd1e66b987699f55f57c3c4f6097f1fb31cf0517 /misc
parentf332cf498d83f4ef2da5ce1493347c1984cbf0d8 (diff)
Remove `bit_field` type from Odin (keyword and dead runtime code still exists)
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);