diff --git a/src/tokenizer.rs b/src/tokenizer.rs index 7a31af3..5d52ac4 100644 --- a/src/tokenizer.rs +++ b/src/tokenizer.rs @@ -68,7 +68,7 @@ pub fn tokenize(input: &str) -> Option> { RParen } else if c == ':' { Colon - else if c == ',' { + } else if c == ',' { Comma } else if c == '"' { let mut buffer = String::with_capacity(20);