Skip to content

Commit

Permalink
Close #3: ABNF has =/, not /=
Browse files Browse the repository at this point in the history
  • Loading branch information
cabo committed Dec 15, 2023
1 parent 98bc87c commit 309c63b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions draft-ietf-cbor-update-8610-grammar.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ The existing ABNF syntax for expressing tags in CDDL is:
~~~ abnf
; extracted from RFC 8610 ABNF:
type2 /= "#" "6" ["." uint] "(" S type S ")"
type2 =/ "#" "6" ["." uint] "(" S type S ")"
~~~
{: #tag-old title="Old ABNF for tag syntax"}
Expand All @@ -337,7 +337,7 @@ This update extends this to:
~~~ abnf
; new rules collectively defining the tagged case:
type2 /= "#" "6" ["." tag-number] "(" S type S ")"
type2 =/ "#" "6" ["." tag-number] "(" S type S ")"
tag-number = uint / ("<" type ">")
~~~
{: #tag-new title="Updated ABNF for tag syntax"
Expand Down

0 comments on commit 309c63b

Please sign in to comment.