aboutsummaryrefslogtreecommitdiff
path: root/core/container/small_array
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2025-10-09 14:23:05 +0100
committergingerBill <gingerBill@users.noreply.github.com>2025-10-09 14:23:05 +0100
commitc0fd19da182e56fa49352a19f8a683eeeb758987 (patch)
tree4faef7be0d1e68cf52578d34b0779e4c3f85e6a9 /core/container/small_array
parent8e410f82045eaabd24fd45f15df25ef2e56248b4 (diff)
parent153b0de4206773956d0402c880de2ff5254947e4 (diff)
Merge branch 'master' of https://github.com/odin-lang/Odin
Diffstat (limited to 'core/container/small_array')
-rw-r--r--core/container/small_array/doc.odin9
1 files changed, 4 insertions, 5 deletions
diff --git a/core/container/small_array/doc.odin b/core/container/small_array/doc.odin
index f3e9acd57..a57caf798 100644
--- a/core/container/small_array/doc.odin
+++ b/core/container/small_array/doc.odin
@@ -1,7 +1,7 @@
-/*
-Package small_array implements a dynamic array like
-interface on a stack-allocated, fixed-size array.
+// package small_array implements a dynamic array-like interface on a stack-allocated, fixed-size array.
+package container_small_array
+/*
The Small_Array type is optimal for scenarios where you need
a container for a fixed number of elements of a specific type,
with the total number known at compile time but the exact
@@ -51,5 +51,4 @@ Output:
Hellope
-*/
-package container_small_array
+*/ \ No newline at end of file