File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -569,7 +569,7 @@ unescaped-literal = %x20-21 / ; space !
569
569
%x 23 -5B / ; # - [
570
570
%x 5D -5F / ; ] ^ _
571
571
%x 61 -7A / ; a-z
572
- %x 7C -10FFFF ; |}~ ...
572
+ %x 7B -10FFFF ; { |}~ ...
573
573
escaped-literal = escaped-char / (escape " `" )
574
574
number = [" -" ] 1 * digit
575
575
digit = %x 30 -39
@@ -625,7 +625,7 @@ json-value = false / null / true / json-object / json-array /
625
625
false = %x 66 . 61 . 6c . 73 . 65 ; false
626
626
null = %x 6e . 75 . 6c . 6c ; null
627
627
true = %x 74 . 72 . 75 . 65 ; true
628
- json-quoted-string = %x 22 1 * ( unescaped-literal / escaped-literal ) %x 22
628
+ json-quoted-string = %x 22 * ( unescaped-literal / escaped-literal ) %x 22
629
629
begin-array = ws %x 5B ws ; [ left square bracket
630
630
begin-object = ws %x 7B ws ; { left curly bracket
631
631
end-array = ws %x 5D ws ; ] right square bracket
You can’t perform that action at this time.
0 commit comments