Skip to content

Commit

Permalink
Avoid saying "run these substeps again". Fixes https://www.w3.org/Bug…
Browse files Browse the repository at this point in the history
  • Loading branch information
annevk committed Apr 24, 2013
1 parent 4a0d68a commit 7d0df58
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions url.html
Expand Up @@ -201,9 +201,9 @@ <h2 id="percent-encoded-bytes"><span class="secno">3 </span>Percent-encoded byte
<a href="#remaining">remaining</a> does not start with two
<a href="#ascii-hex-digits">ASCII hex digits</a>, append to <var title="">bytes</var> a byte
whose value is <a href="#c">c</a>'s code point, increase
<var title="">pointer</var> by one, and run these substeps again.
<var title="">pointer</var> by one.

<li><p>While <a href="#c">c</a> is "<code title="">%</code>" and
<li><p>Otherwise, while <a href="#c">c</a> is "<code title="">%</code>" and
<a href="#remaining">remaining</a> starts with two <a href="#ascii-hex-digits">ASCII hex digits</a>,
append to <var title="">bytes</var> a byte whose value is
<a href="#remaining">remaining</a>'s two leading code points, interpreted as
Expand Down Expand Up @@ -366,7 +366,7 @@ <h3 id="host-parsing"><span class="secno">4.2 </span>Parsing</h3>
<var title="">pieces</var>, initially null and pointing to nothing.

<li><p>Let <var title="">pointer</var> be a pointer into
<var title="">input</var>, initially zero (pointing to the first code point)
<var title="">input</var>, initially zero (pointing to the first code point).

<li>
<p>If <a href="#c">c</a> is "<code title="">:</code>", run these substeps:
Expand Down
4 changes: 2 additions & 2 deletions url.src.html
Expand Up @@ -177,9 +177,9 @@ <h2>Percent-encoded bytes</h2>
<span>remaining</span> does not start with two
<span>ASCII hex digits</span>, append to <var title>bytes</var> a byte
whose value is <span>c</span>'s code point, increase
<var title>pointer</var> by one, and run these substeps again.
<var title>pointer</var> by one.

<li><p>While <span>c</span> is "<code title>%</code>" and
<li><p>Otherwise, while <span>c</span> is "<code title>%</code>" and
<span>remaining</span> starts with two <span>ASCII hex digits</span>,
append to <var title>bytes</var> a byte whose value is
<span>remaining</span>'s two leading code points, interpreted as
Expand Down

0 comments on commit 7d0df58

Please sign in to comment.