fix floats bug

Update CHANGELOG.md

Co-Authored-By: Clément Renault <renault.cle@gmail.com>
This commit is contained in:
mpostma 2020-04-27 15:36:04 +02:00
parent 812465e014
commit d1f1bfe071
2 changed files with 2 additions and 1 deletions

View file

@ -2,7 +2,7 @@ key = _{quoted | word}
value = _{quoted | word}
quoted = _{ (PUSH("'") | PUSH("\"")) ~ string ~ POP }
string = {char*}
word = ${(LETTER | NUMBER | "_" | "-")+}
word = ${(LETTER | NUMBER | "_" | "-" | ".")+}
char = _{ !(PEEK | "\\") ~ ANY
| "\\" ~ (PEEK | "\\" | "/" | "b" | "f" | "n" | "r" | "t")