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 @@ -695,7 +695,7 @@ unquoted-string = (%x41-5A / %x61-7A / %x5F) *( ; A-Za-z_
695
695
%x 5F / ; _
696
696
%x 61 -7A ) ; a-z
697
697
quoted-string = quote 1 * (unescaped-char / escaped-char ) quote
698
- unescaped-char = %x 20 -21 / %x 23 -2E / %30- 5B / %x 5D -10FFFF
698
+ unescaped-char = %x 20 -21 / %x 23 -5B / %x 5D -10FFFF
699
699
escape = " \"
700
700
quote = %x 22 ; Double quote: '"'
701
701
escaped-char = escape (
@@ -732,7 +732,7 @@ ws = *(%x20 / ; Space
732
732
%x 0D ; Carriage return
733
733
)
734
734
json-object = begin-object [ member * ( value-separator member ) ] end-object
735
- member = quoted-string name-separator json-value
735
+ member = json- quoted-string name-separator json-value
736
736
json-array = begin-array [ json-value * ( value-separator json-value ) ] end-array
737
737
json-number = [ minus ] int [ frac ] [ exp ]
738
738
decimal-point = %x 2E ; .
You can’t perform that action at this time.
0 commit comments