Skip to content

Commit 7746146

Browse files
committed
Fix the cycle() example to use the proper spelling for 'disc'.
--HG-- extra : rebase_source : fb4fc00cd6fec1788490c86d432d8f78fa406af1
1 parent 56368df commit 7746146

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

css3-values/Overview.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727

2828
<h1>CSS Values and Units Module Level 3</h1>
2929

30-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 18 May 2012</h2>
30+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 21 May 2012</h2>
3131

3232
<dl>
3333
<dt>This version:
3434

3535
<dd><a
36-
href="http://www.w3.org/TR/2012/ED-css3-values-20120518/">http://www.w3.org/TR/2012/ED-css3-values-20120518/</a>
36+
href="http://www.w3.org/TR/2012/ED-css3-values-20120521/">http://www.w3.org/TR/2012/ED-css3-values-20120521/</a>
3737

3838
<dt>Latest version:
3939

@@ -1564,8 +1564,8 @@ <h3 id=cycle-notation><span class=secno>8.2. </span> Cycling Values: ‘<a
15641564
/* cycle between markers for nested lists, so that the top level has
15651565
disk markers, but nested lists use circle, square, box, and then
15661566
(for the 5th list deep) repeat */
1567-
ul { list-style-type: disk; }
1568-
li > ul { list-style-type: cycle(disk, circle, square, box); }</pre>
1567+
ul { list-style-type: disc; }
1568+
ul ul { list-style-type: cycle(disc, circle, square, box); }</pre>
15691569
</div>
15701570

15711571
<p>The ‘<a href="#cycle"><code class=css>cycle()</code></a>’ notation

css3-values/Overview.src.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,8 +1119,8 @@ <h3 id="cycle-notation">
11191119
/* cycle between markers for nested lists, so that the top level has
11201120
disk markers, but nested lists use circle, square, box, and then
11211121
(for the 5th list deep) repeat */
1122-
ul { list-style-type: disk; }
1123-
li > ul { list-style-type: cycle(disk, circle, square, box); }</pre>
1122+
ul { list-style-type: disc; }
1123+
ul ul { list-style-type: cycle(disc, circle, square, box); }</pre>
11241124
</div>
11251125

11261126
<p>The ''cycle()'' notation is not allowed to be nested; nor may it

0 commit comments

Comments
 (0)