aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2024-08-11 13:35:10 +0200
committerGitHub <noreply@github.com>2024-08-11 13:35:10 +0200
commit8a67221bd4e707286b69a9b00a36ff70a4251c85 (patch)
tree9e6b68ce8c991bb9b52bced3dd24be130a69343d /base
parentf5fe0de0fd508b5d301708c74e67e7314aa52112 (diff)
parent67251ad5b8283118472b0ceeebd328e4c8dae2ce (diff)
Merge pull request #4057 from asibahi/patch-1
typo fix
Diffstat (limited to 'base')
-rw-r--r--base/runtime/default_temp_allocator_arena.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/runtime/default_temp_allocator_arena.odin b/base/runtime/default_temp_allocator_arena.odin
index ab9f7df4a..db157b267 100644
--- a/base/runtime/default_temp_allocator_arena.odin
+++ b/base/runtime/default_temp_allocator_arena.odin
@@ -129,7 +129,7 @@ arena_alloc :: proc(arena: ^Arena, size, alignment: uint, loc := #caller_locatio
return
}
-// `arena_init` will initialize the arena with a usuable block.
+// `arena_init` will initialize the arena with a usable block.
// This procedure is not necessary to use the Arena as the default zero as `arena_alloc` will set things up if necessary
@(require_results)
arena_init :: proc(arena: ^Arena, size: uint, backing_allocator: Allocator, loc := #caller_location) -> Allocator_Error {