Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't complicate example 4 with generics #3

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions draft-ietf-cbor-cddl-more-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,10 @@ It is therefore recommended to only use it in simple cases, and leave
full parsing to ABNF (see {{Section 3 of -control1}}) or similar.

~~~ cddl
legacy-ip-address = text .join [digits<1>, ".", digits<2>,
".", digits<3>, ".", digits<4>]
digits<N> = text .decimal byte<n>
legacy-ip-address = text .join [bytetext, ".", bytetext,
".", bytetext, ".", bytetext]
bytetext = text .decimal byte
byte = 0..255
~~~
{: sourcecode-name="example4.cddl"}

Expand Down
Loading