From 6a3d84628b8507180f0d17ae9ada48ba135171ac Mon Sep 17 00:00:00 2001 From: famfo Date: Sat, 2 May 2026 17:50:24 +0200 Subject: [PATCH] fixup: why not spell out characters --- content/appendices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/appendices.md b/content/appendices.md index 8e9443f9..0629dcec 100644 --- a/content/appendices.md +++ b/content/appendices.md @@ -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 \