diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-30 11:29:51 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-30 11:29:51 +0100 |
| commit | 5b6889ccf5acc39a945d044ada96c88f714a9c23 (patch) | |
| tree | a7409b1d113f0690dbf044d094033e25f08a27d3 /core/container/small_array | |
| parent | 36d63b14b501e46b88d3b0b62f29c4a3fa2f556e (diff) | |
Enable misnamed doc example test for small_array
Diffstat (limited to 'core/container/small_array')
| -rw-r--r-- | core/container/small_array/small_array.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/container/small_array/small_array.odin b/core/container/small_array/small_array.odin index 1d9795db8..a7e046fcf 100644 --- a/core/container/small_array/small_array.odin +++ b/core/container/small_array/small_array.odin @@ -309,7 +309,7 @@ Example: import "core:container/small_array" import "core:fmt" - non_zero_resize :: proc() { + non_zero_resize_example :: proc() { a: small_array.Small_Array(5, int) small_array.push_back(&a, 1) |