From 4d22f8c1d3ac5dec428626c3afa3ebf1869af50d Mon Sep 17 00:00:00 2001 From: Carsten Bormann Date: Wed, 23 Aug 2023 10:05:37 +0200 Subject: [PATCH] Actually exclude the slash from non-slash --- cbor-diag-parser.abnf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbor-diag-parser.abnf b/cbor-diag-parser.abnf index 4035f43..ec27636 100644 --- a/cbor-diag-parser.abnf +++ b/cbor-diag-parser.abnf @@ -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