Skip to content

Commit 2e230cd

Browse files
committed
typos
--HG-- extra : rebase_source : 24dbfc8b42f637ce95e68616883d217d8db41628
1 parent 3d82a56 commit 2e230cd

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

css3-syntax/Overview.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
<h1>CSS Syntax Module Level 3</h1>
3838

39-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 16 July 2012</h2>
39+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 17 July 2012</h2>
4040

4141
<dl>
4242
<dt>This version:
@@ -592,7 +592,7 @@ <h3 id=parse-state><span class=secno>3.3. </span> Parse State</h3>
592592
<h3 id=tokenization><span class=secno>3.4. </span> Tokenization</h3>
593593

594594
<p> Implementations must act as if they used the following state machine to
595-
tokenize HTML. The state machine must start in the <a
595+
tokenize CSS. The state machine must start in the <a
596596
href="#data-state0"><i>data state</i></a>. Most states consume a single
597597
character, which may have various side-effects, and either switches the
598598
state machine to a new state to reconsume the same character, or switches
@@ -604,7 +604,7 @@ <h3 id=tokenization><span class=secno>3.4. </span> Tokenization</h3>
604604
<p> The output of the tokenization step is a series of zero or more of the
605605
following tokens: identifier, function, at-keyword, hash, string,
606606
bad-string, url, bad-url, delim, number, percentage, dimension,
607-
unicode-range, whitespace, cdo, cdc, colon, semicolon, [, ], (, ), [, ].
607+
unicode-range, whitespace, cdo, cdc, colon, semicolon, [, ], (, ), {, }.
608608

609609
<p> Identifier, function, at-keyword, hash, string, and url tokens have a
610610
value composed of zero or more characters. Delim tokens have a value
@@ -740,7 +740,7 @@ <h4 id=data-state><span class=secno>3.4.3. </span> <dfn id=data-state0>Data
740740

741741
<dt>U+0028 LEFT PARENTHESIS (()
742742

743-
<dd> Emit an ( token. Remain in this state.
743+
<dd> Emit a ( token. Remain in this state.
744744

745745
<dt>U+0029 RIGHT PARENTHESIS ())
746746

@@ -822,7 +822,7 @@ <h4 id=data-state><span class=secno>3.4.3. </span> <dfn id=data-state0>Data
822822

823823
<dt>U+005B LEFT SQUARE BRACKET ([)
824824

825-
<dd> Emit an [ token. Remain in this state.
825+
<dd> Emit a [ token. Remain in this state.
826826

827827
<dt>U+005C REVERSE SOLIDUS (\)
828828

@@ -840,11 +840,11 @@ <h4 id=data-state><span class=secno>3.4.3. </span> <dfn id=data-state0>Data
840840

841841
<dt>U+007B LEFT CURLY BRACKET ({)
842842

843-
<dd> Emit an [ token. Remain in this state.
843+
<dd> Emit a [ token. Remain in this state.
844844

845845
<dt>U+007D RIGHT CURLY BRACKET (})
846846

847-
<dd> Emit a ] token. Remain in this state.
847+
<dd> Emit a } token. Remain in this state.
848848

849849
<dt><a href="#digit"><i>digit</i></a>
850850

css3-syntax/Overview.src.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ <h3>
330330
Tokenization</h3>
331331

332332
<p>
333-
Implementations must act as if they used the following state machine to tokenize HTML.
333+
Implementations must act as if they used the following state machine to tokenize CSS.
334334
The state machine must start in the <i>data state</i>.
335335
Most states consume a single character,
336336
which may have various side-effects,
@@ -363,8 +363,8 @@ <h3>
363363
],
364364
(,
365365
),
366-
[,
367-
].
366+
{,
367+
}.
368368

369369
<p>
370370
Identifier, function, at-keyword, hash, string, and url tokens have a value composed of zero or more characters.
@@ -494,7 +494,7 @@ <h4>
494494

495495
<dt>U+0028 LEFT PARENTHESIS (()
496496
<dd>
497-
Emit an ( token.
497+
Emit a ( token.
498498
Remain in this state.
499499

500500
<dt>U+0029 RIGHT PARENTHESIS ())
@@ -608,7 +608,7 @@ <h4>
608608

609609
<dt>U+005B LEFT SQUARE BRACKET ([)
610610
<dd>
611-
Emit an [ token.
611+
Emit a [ token.
612612
Remain in this state.
613613

614614
<dt>U+005C REVERSE SOLIDUS (\)
@@ -632,12 +632,12 @@ <h4>
632632

633633
<dt>U+007B LEFT CURLY BRACKET ({)
634634
<dd>
635-
Emit an [ token.
635+
Emit a [ token.
636636
Remain in this state.
637637

638638
<dt>U+007D RIGHT CURLY BRACKET (})
639639
<dd>
640-
Emit a ] token.
640+
Emit a } token.
641641
Remain in this state.
642642

643643
<dt><i>digit</i>

0 commit comments

Comments
 (0)