Skip to content

Commit

Permalink
Fix typo in canonical JSON grammar (#1652)
Browse files Browse the repository at this point in the history
Signed-off-by: Benedykt Błaszkiewicz <tsufeki@gmail.com>
  • Loading branch information
tsufeki committed Oct 2, 2023
1 parent e40d9ca commit 92cf662
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions changelogs/appendices/newsfragments/1652.clarification
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix typo in canonical JSON grammar.
8 changes: 4 additions & 4 deletions content/appendices.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 92cf662

Please sign in to comment.