diff options
Diffstat (limited to 'grammars/json_arr.gbnf')
-rw-r--r-- | grammars/json_arr.gbnf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grammars/json_arr.gbnf b/grammars/json_arr.gbnf index ef53e77a..fd5740ee 100644 --- a/grammars/json_arr.gbnf +++ b/grammars/json_arr.gbnf @@ -24,7 +24,7 @@ array ::= string ::= "\"" ( - [^"\\] | + [^"\\\n] | "\\" (["\\/bfnrt] | "u" [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F]) # escapes )* "\"" ws |