Skip to content

Commit

Permalink
[e] (0) Fix typos, fix the silly 'escaping' of out-of-range character…
Browse files Browse the repository at this point in the history
…s in submission to actually match what browsers do.

git-svn-id: http://svn.whatwg.org/webapps@3000 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Apr 27, 2009
1 parent 166940d commit d789a7a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
19 changes: 11 additions & 8 deletions index
Expand Up @@ -2160,7 +2160,7 @@
<h5 id=non-negative-integers><span class=secno>2.4.4.1 </span>Non-negative integers</h5>

<p>A string is a <dfn id=valid-non-negative-integer>valid non-negative integer</dfn> if it
consists of one of more characters in the range U+0030 DIGIT ZERO
consists of one or more characters in the range U+0030 DIGIT ZERO
(0) to U+0039 DIGIT NINE (9).</p>

<p>A <a href=#valid-non-negative-integer>valid non-negative integer</a> represents the number
Expand Down Expand Up @@ -2224,7 +2224,7 @@

<h5 id=signed-integers><span class=secno>2.4.4.2 </span>Signed integers</h5>

<p>A string is a <dfn id=valid-integer>valid integer</dfn> if it consists of one of
<p>A string is a <dfn id=valid-integer>valid integer</dfn> if it consists of one or
more characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT
NINE (9), optionally prefixed with a U+002D HYPHEN-MINUS ("-")
character.</p>
Expand Down Expand Up @@ -2623,7 +2623,7 @@
a character in the range U+0031 DIGIT ONE (1) to U+0039 DIGIT NINE
(9), optionally followed by zero of more characters in the range
U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), optionally followed
by a U+002E FULL STOP character (.) and one of more characters in
by a U+002E FULL STOP character (.) and one or more characters in
the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), and
optionally suffixed by a U+0025 PERCENT SIGN character (%).</p>

Expand Down Expand Up @@ -35464,10 +35464,13 @@ interface <dfn id=htmloptionelement>HTMLOptionElement</dfn> : <a href=#htmleleme
<ol><li><p>For each character in the entry's name and value that
cannot be expressed using the selected character encoding,
replace the character by a string consisting of a U+0026
AMPERSAND character (&amp;), one of more characters in the range
U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9) representing the
Unicode code point of the character in base ten, and finally a
U+003B SEMICOLON character (;).</li>
AMPERSAND character (&amp;), a U+0023 NUMBER SIGN character (#),
one or more characters in the range U+0030 DIGIT ZERO (0) to
U+0039 DIGIT NINE (9) representing the Unicode code point of the
character in base ten, and finally a U+003B SEMICOLON character
(;).</li><!-- we should say it should be the shortest
possible string, no leading zeros. this whole step as asinine,
though, so... -->

<li>

Expand Down Expand Up @@ -43122,7 +43125,7 @@ interface <dfn id=function>Function</dfn> {

<ul><li>

<p>One of more resources (including their out-of-band metadata,
<p>One or more resources (including their out-of-band metadata,
such as HTTP headers, if any), identified by URLs, each falling
into one (or more) of the following categories:</p>

Expand Down
19 changes: 11 additions & 8 deletions source
Expand Up @@ -1219,7 +1219,7 @@
<h5>Non-negative integers</h5>

<p>A string is a <dfn>valid non-negative integer</dfn> if it
consists of one of more characters in the range U+0030 DIGIT ZERO
consists of one or more characters in the range U+0030 DIGIT ZERO
(0) to U+0039 DIGIT NINE (9).</p>

<p>A <span>valid non-negative integer</span> represents the number
Expand Down Expand Up @@ -1296,7 +1296,7 @@

<h5>Signed integers</h5>

<p>A string is a <dfn>valid integer</dfn> if it consists of one of
<p>A string is a <dfn>valid integer</dfn> if it consists of one or
more characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT
NINE (9), optionally prefixed with a U+002D HYPHEN-MINUS ("-")
character.</p>
Expand Down Expand Up @@ -1799,7 +1799,7 @@
a character in the range U+0031 DIGIT ONE (1) to U+0039 DIGIT NINE
(9), optionally followed by zero of more characters in the range
U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), optionally followed
by a U+002E FULL STOP character (.) and one of more characters in
by a U+002E FULL STOP character (.) and one or more characters in
the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), and
optionally suffixed by a U+0025 PERCENT SIGN character (%).</p>

Expand Down Expand Up @@ -39949,10 +39949,13 @@ interface <dfn>HTMLOptionElement</dfn> : <span>HTMLElement</span> {
<li><p>For each character in the entry's name and value that
cannot be expressed using the selected character encoding,
replace the character by a string consisting of a U+0026
AMPERSAND character (&amp;), one of more characters in the range
U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9) representing the
Unicode code point of the character in base ten, and finally a
U+003B SEMICOLON character (;).</p></li>
AMPERSAND character (&amp;), a U+0023 NUMBER SIGN character (#),
one or more characters in the range U+0030 DIGIT ZERO (0) to
U+0039 DIGIT NINE (9) representing the Unicode code point of the
character in base ten, and finally a U+003B SEMICOLON character
(;).</p></li><!-- we should say it should be the shortest
possible string, no leading zeros. this whole step as asinine,
though, so... -->

<li>

Expand Down Expand Up @@ -48785,7 +48788,7 @@ interface <dfn>Function</dfn> {

<li>

<p>One of more resources (including their out-of-band metadata,
<p>One or more resources (including their out-of-band metadata,
such as HTTP headers, if any), identified by URLs, each falling
into one (or more) of the following categories:</p>

Expand Down

0 comments on commit d789a7a

Please sign in to comment.