This commit is contained in:
greg 2016-01-09 23:24:10 -08:00
parent 3e04cbfa29
commit 8c473c554e
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ pub fn tokenize(input: &str) -> Option<Vec<Token>> {
RParen
} else if c == ':' {
Colon
else if c == ',' {
} else if c == ',' {
Comma
} else if c == '"' {
let mut buffer = String::with_capacity(20);