diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-01-24 16:41:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-24 16:41:27 +0100 |
| commit | 9cfd4a953e2a7d19237891993b643b2d1477f8b3 (patch) | |
| tree | f1208965f2917cd1fa2f1c5f6a341a537ec70885 | |
| parent | 5f41741e8c3544efca28058c56db22cf51cba2f2 (diff) | |
| parent | 14e2cc17d6420e4c25a8d4fa815fffde87fd7239 (diff) | |
Merge pull request #3132 from KyleNBurke/patch-1
Remove mention of `map` in builtin resize proc group
| -rw-r--r-- | core/runtime/core_builtin.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime/core_builtin.odin b/core/runtime/core_builtin.odin index bc85cd7f2..3f4ebbc74 100644 --- a/core/runtime/core_builtin.odin +++ b/core/runtime/core_builtin.odin @@ -172,7 +172,7 @@ reserve :: proc{reserve_dynamic_array, reserve_map} @builtin non_zero_reserve :: proc{non_zero_reserve_dynamic_array} -// `resize` will try to resize memory of a passed dynamic array or map to the requested element count (setting the `len`, and possibly `cap`). +// `resize` will try to resize memory of a passed dynamic array to the requested element count (setting the `len`, and possibly `cap`). @builtin resize :: proc{resize_dynamic_array} |