aboutsummaryrefslogtreecommitdiff
path: root/core/encoding
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2023-03-25 07:37:43 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2023-03-25 07:37:43 +0100
commit1e4a4181e2ee3918ea1bd98c715b43746f94b1ed (patch)
tree8af5458308ec10dd6f9859270e836443f60dda3a /core/encoding
parent3e1daa002cc13fdac4e9799fd350f4b83c628c22 (diff)
Typo
Diffstat (limited to 'core/encoding')
-rw-r--r--core/encoding/json/types.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/json/types.odin b/core/encoding/json/types.odin
index 57daaafef..089fd9c9b 100644
--- a/core/encoding/json/types.odin
+++ b/core/encoding/json/types.odin
@@ -88,7 +88,7 @@ Error :: enum {
destroy_value :: proc(value: Value, allocator := context.allocator) {
- context.allocator := allocator
+ context.allocator = allocator
#partial switch v in value {
case Object:
for key, elem in v {