From 15a8970493282f36b561428d057bbcb6da32918e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Vaeng=20R=C3=B8tnes?= Date: Wed, 9 Oct 2024 16:44:17 +0000 Subject: [PATCH] Fix typo in demo.odin --- examples/demo/demo.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index 0dc30e2c0..38b0f1739 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -853,7 +853,7 @@ implicit_context_system :: proc() { what_a_fool_believes :: proc() { c := context // this `context` is the same as the parent procedure that it was called from // From this example, context.user_index == 123 - // An context.allocator is assigned to the return value of `my_custom_allocator()` + // A context.allocator is assigned to the return value of `my_custom_allocator()` assert(context.user_index == 123) // The memory management procedure use the `context.allocator` by