Skip to content

Commit

Permalink
[e] (0) sets are strings, not sets...
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@4308 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Oct 23, 2009
1 parent 1954b35 commit f7f3c56
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 30 deletions.
17 changes: 7 additions & 10 deletions complete.html
Expand Up @@ -4591,8 +4591,8 @@ <h4 id=colors><span class=secno>2.4.6 </span>Colors</h4>

<h4 id=space-separated-tokens><span class=secno>2.4.7 </span>Space-separated tokens</h4>

<p>A <dfn id=set-of-space-separated-tokens>set of space-separated tokens</dfn> is a set of zero or
more words separated by one or more <a href=#space-character title="space
<p>A <dfn id=set-of-space-separated-tokens>set of space-separated tokens</dfn> is a string containing
zero or more words separated by one or more <a href=#space-character title="space
character">space characters</a>, where words consist of any
string of one or more characters, none of which are <a href=#space-character title="space character">space characters</a>.</p>

Expand Down Expand Up @@ -4710,14 +4710,11 @@ <h4 id=space-separated-tokens><span class=secno>2.4.7 </span>Space-separated tok

<h4 id=comma-separated-tokens><span class=secno>2.4.8 </span>Comma-separated tokens</h4>

<p>A <dfn id=set-of-comma-separated-tokens>set of comma-separated tokens</dfn> is a set of zero or
more tokens each separated from the next by a single U+002C COMMA
character (,), where tokens consist of any
string of zero or more characters, neither beginning nor ending with
<a href=#space-character title="space character">space characters</a>, nor
containing any U+002C COMMA characters (,),
and optionally surrounded by <a href=#space-character title="space character">space
characters</a>.</p>
<p>A <dfn id=set-of-comma-separated-tokens>set of comma-separated tokens</dfn> is a string containing
zero or more tokens each separated from the next by a single U+002C
COMMA character (,), where tokens consist of any string of zero or
more characters, neither beginning nor ending with <a href=#space-character title="space character">space characters</a>, nor containing any
U+002C COMMA characters (,), and optionally surrounded by <a href=#space-character title="space character">space characters</a>.</p>

<p class=example>For instance, the string "<code title="">&nbsp;a&nbsp;,b,,d&nbsp;d&nbsp;</code>" consists of four
tokens: "a", "b", the empty string, and "d&nbsp;d". Leading and
Expand Down
17 changes: 7 additions & 10 deletions index
Expand Up @@ -4401,8 +4401,8 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d

<h4 id=space-separated-tokens><span class=secno>2.4.7 </span>Space-separated tokens</h4>

<p>A <dfn id=set-of-space-separated-tokens>set of space-separated tokens</dfn> is a set of zero or
more words separated by one or more <a href=#space-character title="space
<p>A <dfn id=set-of-space-separated-tokens>set of space-separated tokens</dfn> is a string containing
zero or more words separated by one or more <a href=#space-character title="space
character">space characters</a>, where words consist of any
string of one or more characters, none of which are <a href=#space-character title="space character">space characters</a>.</p>

Expand Down Expand Up @@ -4520,14 +4520,11 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d

<h4 id=comma-separated-tokens><span class=secno>2.4.8 </span>Comma-separated tokens</h4>

<p>A <dfn id=set-of-comma-separated-tokens>set of comma-separated tokens</dfn> is a set of zero or
more tokens each separated from the next by a single U+002C COMMA
character (,), where tokens consist of any
string of zero or more characters, neither beginning nor ending with
<a href=#space-character title="space character">space characters</a>, nor
containing any U+002C COMMA characters (,),
and optionally surrounded by <a href=#space-character title="space character">space
characters</a>.</p>
<p>A <dfn id=set-of-comma-separated-tokens>set of comma-separated tokens</dfn> is a string containing
zero or more tokens each separated from the next by a single U+002C
COMMA character (,), where tokens consist of any string of zero or
more characters, neither beginning nor ending with <a href=#space-character title="space character">space characters</a>, nor containing any
U+002C COMMA characters (,), and optionally surrounded by <a href=#space-character title="space character">space characters</a>.</p>

<p class=example>For instance, the string "<code title="">&nbsp;a&nbsp;,b,,d&nbsp;d&nbsp;</code>" consists of four
tokens: "a", "b", the empty string, and "d&nbsp;d". Leading and
Expand Down
19 changes: 9 additions & 10 deletions source
Expand Up @@ -3958,8 +3958,8 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d

<h4>Space-separated tokens</h4>

<p>A <dfn>set of space-separated tokens</dfn> is a set of zero or
more words separated by one or more <span title="space
<p>A <dfn>set of space-separated tokens</dfn> is a string containing
zero or more words separated by one or more <span title="space
character">space characters</span>, where words consist of any
string of one or more characters, none of which are <span
title="space character">space characters</span>.</p>
Expand Down Expand Up @@ -4107,14 +4107,13 @@ a.setAttribute('href', 'http://example.com/'); // change the content attribute d

<h4>Comma-separated tokens</h4>

<p>A <dfn>set of comma-separated tokens</dfn> is a set of zero or
more tokens each separated from the next by a single U+002C COMMA
character (,), where tokens consist of any
string of zero or more characters, neither beginning nor ending with
<span title="space character">space characters</span>, nor
containing any U+002C COMMA characters (,),
and optionally surrounded by <span title="space character">space
characters</span>.</p>
<p>A <dfn>set of comma-separated tokens</dfn> is a string containing
zero or more tokens each separated from the next by a single U+002C
COMMA character (,), where tokens consist of any string of zero or
more characters, neither beginning nor ending with <span
title="space character">space characters</span>, nor containing any
U+002C COMMA characters (,), and optionally surrounded by <span
title="space character">space characters</span>.</p>

<p class="example">For instance, the string "<code
title="">&nbsp;a&nbsp;,b,,d&nbsp;d&nbsp;</code>" consists of four
Expand Down

0 comments on commit f7f3c56

Please sign in to comment.