diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-10-09 19:00:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-09 19:00:23 +0200 |
| commit | 4e07d3f1d33e4f24855941dce6718441d4968704 (patch) | |
| tree | fd5e70c24cf9e893faf376c71a98ae350bd06e41 | |
| parent | 6f23b5bb6041ba7eaacdf5f568c11c6b769ef02d (diff) | |
| parent | 15a8970493282f36b561428d057bbcb6da32918e (diff) | |
Merge pull request #4360 from frwdrik/patch-1
Fix typo in demo.odin
| -rw-r--r-- | examples/demo/demo.odin | 2 |
1 files changed, 1 insertions, 1 deletions
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 |