From b47736260af5316c4d0581464e4c48960a5b7648 Mon Sep 17 00:00:00 2001 From: Alex Ragalie <2127095+aragalie@users.noreply.github.com> Date: Sun, 31 Dec 2023 21:57:39 +0100 Subject: [PATCH] remove duplication --- 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 d3ca42454..c3c5fd5d0 100644 --- a/core/runtime/core_builtin.odin +++ b/core/runtime/core_builtin.odin @@ -348,7 +348,7 @@ make_multi_pointer :: proc($T: typeid/[^]$E, #any_int len: int, allocator := con // // Similar to `new`, the first argument is a type, not a value. Unlike new, make's return type is the same as the // type of its argument, not a pointer to it. -// Make uses the specified allocator, default is context.allocator, default is context.allocator +// Make uses the specified allocator, default is context.allocator. @builtin make :: proc{ make_slice,