- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 07 Dec 2011 15:47:52 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-lists
In directory hutz:/tmp/cvs-serv25352
Modified Files:
Overview.html Overview.src.html
Log Message:
Fixed math error in the repeating algorithm.
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.html,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -d -r1.130 -r1.131
--- Overview.html 7 Dec 2011 02:43:18 -0000 1.130
+++ Overview.html 7 Dec 2011 15:47:49 -0000 1.131
@@ -2053,7 +2053,7 @@
<p>In general, if there are <var>length</var> <i>counter symbols</i> and a
representation is being constructed for the value <var>value</var>, the
representation is the <a href="#counter-symbol"><i>counter symbol</i></a>
- at index (<var>value</var> mod <var>length</var>) of the list of <a
+ at index ( (<var>value</var>-1) mod <var>length</var>) of the list of <a
href="#counter-symbol"><i>counter symbol</i></a>s (0-indexed).
<div class=example>
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-lists/Overview.src.html,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -d -r1.177 -r1.178
--- Overview.src.html 7 Dec 2011 02:43:18 -0000 1.177
+++ Overview.src.html 7 Dec 2011 15:47:49 -0000 1.178
@@ -1256,7 +1256,7 @@
<p>In general, if there are <var>length</var> <i>counter symbols</i> and
a representation is being constructed for the value <var>value</var>,
the representation is the <i>counter symbol</i> at index
- (<var>value</var> mod <var>length</var>) of the list of <i>counter symbol</i>s
+ ( (<var>value</var>-1) mod <var>length</var>) of the list of <i>counter symbol</i>s
(0-indexed).</p>
<div class=example>
Received on Wednesday, 7 December 2011 15:47:56 UTC