From 92cf662e3a2b811acff04787bd06edc370627bdf Mon Sep 17 00:00:00 2001 From: tsufeki Date: Mon, 2 Oct 2023 14:13:23 +0200 Subject: [PATCH] Fix typo in canonical JSON grammar (#1652) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Benedykt Błaszkiewicz --- changelogs/appendices/newsfragments/1652.clarification | 1 + content/appendices.md | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 changelogs/appendices/newsfragments/1652.clarification diff --git a/changelogs/appendices/newsfragments/1652.clarification b/changelogs/appendices/newsfragments/1652.clarification new file mode 100644 index 00000000..488b7e2b --- /dev/null +++ b/changelogs/appendices/newsfragments/1652.clarification @@ -0,0 +1 @@ +Fix typo in canonical JSON grammar. diff --git a/content/appendices.md b/content/appendices.md index 59c1b1c3..a5ddb7bf 100644 --- a/content/appendices.md +++ b/content/appendices.md @@ -136,12 +136,12 @@ removing insignificant whitespace, fractions, exponents and redundant character escapes. value = false / null / true / object / array / number / string - false = %x66.61.6c.73.65 - null = %x6e.75.6c.6c + false = %x66.61.6C.73.65 + null = %x6E.75.6C.6C true = %x74.72.75.65 - object = %x7B [ member *( %x2C member ) ] %7D + object = %x7B [ member *( %x2C member ) ] %x7D member = string %x3A value - array = %x5B [ value *( %x2C value ) ] %5B + array = %x5B [ value *( %x2C value ) ] %x5D number = [ %x2D ] int int = %x30 / ( %x31-39 *digit ) digit = %x30-39