fixup: why not spell out characters

This commit is contained in:
famfo 2026-05-02 17:50:24 +02:00
parent d75b1308db
commit 6a3d84628b
No known key found for this signature in database

View file

@ -146,7 +146,7 @@ member = string ":" value
array = "[" [ value *( "," value ) ] "]"
number = [ "-" ] int
int = %x30 / ( %x31-39 *DIGIT ) ; Integer without leading zeros
string = DQUOTE *char DQUOTE ; Quoted chars
string = DQUOTE *char DQUOTE ; Quoted characters
char = unescaped / "\" escaped
unescaped = %x20-21 / %x23-5B / %x5D-10FFFF ; All UTF-8 codepoints except ASCII control
; characters, " and \