diff options
| author | gingerBill <bill@gingerbill.org> | 2021-08-15 11:13:59 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-08-15 11:13:59 +0100 |
| commit | effecf8595ee69b5ab1f63e14c1577fbe983da04 (patch) | |
| tree | 53130213cd0d8ce73f26f45aec2602c20e2c44d3 /core | |
| parent | d5e3f72a0b618cfe97dc8391c67e8e77bff6667e (diff) | |
Fix typo
Diffstat (limited to 'core')
| -rw-r--r-- | core/encoding/json/tokenizer.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/encoding/json/tokenizer.odin b/core/encoding/json/tokenizer.odin index 7adc062c2..7bd2c5283 100644 --- a/core/encoding/json/tokenizer.odin +++ b/core/encoding/json/tokenizer.odin @@ -112,6 +112,7 @@ get_token :: proc(t: ^Tokenizer) -> (token: Token, err: Error) { return false; } } + return true; case: // Ignore the next rune regardless next_rune(t); |