diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-09 14:23:05 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-09 14:23:05 +0100 |
| commit | c0fd19da182e56fa49352a19f8a683eeeb758987 (patch) | |
| tree | 4faef7be0d1e68cf52578d34b0779e4c3f85e6a9 /core/container/bit_array | |
| parent | 8e410f82045eaabd24fd45f15df25ef2e56248b4 (diff) | |
| parent | 153b0de4206773956d0402c880de2ff5254947e4 (diff) | |
Merge branch 'master' of https://github.com/odin-lang/Odin
Diffstat (limited to 'core/container/bit_array')
| -rw-r--r-- | core/container/bit_array/doc.odin | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/container/bit_array/doc.odin b/core/container/bit_array/doc.odin index 36bf90002..6d35d48d1 100644 --- a/core/container/bit_array/doc.odin +++ b/core/container/bit_array/doc.odin @@ -1,3 +1,6 @@ +// package bit_array implements a dynamically-sized array of bits +package container_dynamic_bit_array + /* The Bit Array can be used in several ways: @@ -48,5 +51,4 @@ Example: fmt.printf("Get(Negative_Test): %v, %v\n", get(bits, Foo.Negative_Test)) fmt.printf("Freed.\n") } -*/ -package container_dynamic_bit_array +*/
\ No newline at end of file |