Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions url.bs
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ Sequence:
A scheme consists of an <a>ASCII alpha</a>,
followed by zero or more <a>ASCII alpha</a> or any of the following
code points: hyphen-minus (<code>U+002D</code>), plus sign (<code>U+002B</code>) or full stop
(<code>U+002D</code>).
(<code>U+002E</code>).
Return the results as a lowercased string.

<h4 id=rule-authority class=no-toc>authority(input)</h4>
Expand Down Expand Up @@ -1189,7 +1189,7 @@ Sequence:
</pre>

Return four decimal <a title='IPv4 piece'><code>8</code>-bit pieces</a> separated by full
stop code points as a string.
stop (U+002E) code points as a string.

<h4 id=rule-decimal-byte class=no-toc>decimal-byte(input)</h4>

Expand Down Expand Up @@ -1224,6 +1224,7 @@ ZeroOrMore:
a solidus (<code>U+002F</code>),
a reverse solidus (<code>U+005C</code>),
a question mark (<code>U+003F</code>),
a number sign (<code>U+<code>0023</code></code>),
or the end of string is encountered.

<li>Let <code>result</code> be the <a title=cleanse>cleansed</a> set of code points using
Expand Down
5 changes: 3 additions & 2 deletions url.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ NonFileRelativeScheme
A scheme consists of an <a>ASCII alpha</a>,
followed by zero or more <a>ASCII alpha</a> or any of the following
code points: hyphen-minus (U+002D), plus sign (U+002B) or full stop
(U+002D).
(U+002E).
Return the results as a lowercased string.
*/
Scheme
Expand Down Expand Up @@ -916,7 +916,7 @@ H16
returns: String

Return four decimal <a title='IPv4 piece'>8-bit pieces</a> separated by full
stop code points as a string.
stop (U+002E) code points as a string.
*/
LS32
= a:DecimalByte '.' b:DecimalByte '.' d:DecimalByte '.' d:DecimalByte
Expand Down Expand Up @@ -945,6 +945,7 @@ DecimalByte
a solidus (U+002F),
a reverse solidus (U+005C),
a question mark (U+003F),
a number sign (U+0023),
or the end of string is encountered.

<li>Let $result be the <a title=cleanse>cleansed</a> set of code points using
Expand Down