Skip to content

Commit

Permalink
Fixed production rules of update_id and sup_id to allow '-' instead o…
Browse files Browse the repository at this point in the history
…f '_'
  • Loading branch information
dclinton committed Jan 6, 2009
1 parent ab8368a commit 7f5ef05
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions spec/draft-clinton-sup-00.html
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ <h3>Table of Contents</h3>
rules, as defined by the
<a class='info' href='#RFC5234'>augmented BNF<span> (</span><span class='info'>Crocker, D. and P. Overell, &ldquo;Augmented BNF for Syntax Specifications: ABNF,&rdquo; January&nbsp;2008.</span><span>)</span></a> [RFC5234] syntax.

</p><div style='display: table; width: 0; margin-left: 3em; margin-right: auto'><pre>sup_id = 1*128(CHAR / DIGIT / "_")</pre></div>
</p><div style='display: table; width: 0; margin-left: 3em; margin-right: auto'><pre>sup_id = 1*128(CHAR / DIGIT / "-")</pre></div>
<a name="update-id"></a><br /><hr />
<table summary="layout" cellpadding="0" cellspacing="2" class="TOCbug" align="right"><tr><td class="TOCbug"><a href="#toc">&nbsp;TOC&nbsp;</a></td></tr></table>
<a name="rfc.section.5"></a><h3>5.&nbsp;
Expand All @@ -491,7 +491,7 @@ <h3>Table of Contents</h3>
rules, as defined by the
<a class='info' href='#RFC5234'>augmented BNF<span> (</span><span class='info'>Crocker, D. and P. Overell, &ldquo;Augmented BNF for Syntax Specifications: ABNF,&rdquo; January&nbsp;2008.</span><span>)</span></a> [RFC5234] syntax.

</p><div style='display: table; width: 0; margin-left: 3em; margin-right: auto'><pre>update_id = 1*128(CHAR / DIGIT / "_")</pre></div>
</p><div style='display: table; width: 0; margin-left: 3em; margin-right: auto'><pre>update_id = 1*128(CHAR / DIGIT / "-")</pre></div>
<a name="discovery"></a><br /><hr />
<table summary="layout" cellpadding="0" cellspacing="2" class="TOCbug" align="right"><tr><td class="TOCbug"><a href="#toc">&nbsp;TOC&nbsp;</a></td></tr></table>
<a name="rfc.section.6"></a><h3>6.&nbsp;
Expand Down
4 changes: 2 additions & 2 deletions spec/draft-clinton-sup-00.txt
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ Internet-Draft SUP January 2009
composed of ASCII letters, numbers, or hyphens (regex [a-zA-Z0-9-]),
and are produced via the following rules, as defined by the augmented
BNF [RFC5234] syntax.
sup_id = 1*128(CHAR / DIGIT / "_")
sup_id = 1*128(CHAR / DIGIT / "-")


5. Update ID
Expand All @@ -289,7 +289,7 @@ Internet-Draft SUP January 2009
characters composed of ASCII letters, numbers, or hyphens (regex
[a-zA-Z0-9-]), and are produced via the following rules, as defined
by the augmented BNF [RFC5234] syntax.
update_id = 1*128(CHAR / DIGIT / "_")
update_id = 1*128(CHAR / DIGIT / "-")


6. Discovery
Expand Down
4 changes: 2 additions & 2 deletions spec/draft-clinton-sup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
<xref target="RFC5234">augmented BNF</xref> syntax.
</t>

<figure><artwork>sup_id = 1*128(CHAR / DIGIT / "_")</artwork></figure>
<figure><artwork>sup_id = 1*128(CHAR / DIGIT / "-")</artwork></figure>

</section>

Expand All @@ -286,7 +286,7 @@
<xref target="RFC5234">augmented BNF</xref> syntax.
</t>

<figure><artwork>update_id = 1*128(CHAR / DIGIT / "_")</artwork></figure>
<figure><artwork>update_id = 1*128(CHAR / DIGIT / "-")</artwork></figure>

</section>

Expand Down

0 comments on commit 7f5ef05

Please sign in to comment.