Skip to content

Commit

Permalink
Actually exclude the slash from non-slash
Browse files Browse the repository at this point in the history
  • Loading branch information
cabo committed Aug 23, 2023
1 parent 03097b6 commit 4d22f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cbor-diag-parser.abnf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ kp = item S ":" S item

; We allow %x09 HT in prose, but not in strings
blank = %x09 / %x0A / %x0D / %x20
non-slash = blank / %x21-2e / %x2f-10FFFF
non-slash = blank / %x21-2e / %x30-10FFFF
S = *blank *("/" *non-slash "/" *blank )

; note that there must be at least one string to distinguish
Expand Down

0 comments on commit 4d22f8c

Please sign in to comment.