diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-09-04 21:37:48 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-04 21:37:48 +0100 |
| commit | a4fd0c133e824e349f830cad171d46fc210faab4 (patch) | |
| tree | 8c869bc49609d68c5cd9e4e53a2b2f03b92f6297 /core/container/bit_array | |
| parent | ce018b4e6fc21356f5236449d90712fc5d0adc3e (diff) | |
| parent | 288312a8126d71fae26c9d62a8cd342d830e1c5f (diff) | |
Merge pull request #4191 from laytan/improve-package-doc-comments
core: improve package doc comments for the documentation generator
Diffstat (limited to 'core/container/bit_array')
| -rw-r--r-- | core/container/bit_array/doc.odin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/container/bit_array/doc.odin b/core/container/bit_array/doc.odin index 77e1904a8..36bf90002 100644 --- a/core/container/bit_array/doc.odin +++ b/core/container/bit_array/doc.odin @@ -1,8 +1,8 @@ /* The Bit Array can be used in several ways: -- By default you don't need to instantiate a Bit Array: - +By default you don't need to instantiate a Bit Array. +Example: package test import "core:fmt" @@ -22,8 +22,8 @@ The Bit Array can be used in several ways: destroy(&bits) } -- A Bit Array can optionally allow for negative indices, if the minimum value was given during creation: - +A Bit Array can optionally allow for negative indices, if the minimum value was given during creation. +Example: package test import "core:fmt" |