From 14e2cc17d6420e4c25a8d4fa815fffde87fd7239 Mon Sep 17 00:00:00 2001 From: Kyle Burke Date: Wed, 24 Jan 2024 09:39:47 -0600 Subject: [PATCH] Remove mention of `map` in builtin resize proc group --- core/runtime/core_builtin.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}