- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 25 Oct 2009 07:08:50 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv23556
Modified Files:
Overview.html
Log Message:
Make the 'find a number' algorithm interact correctly with the parent algorithm. (whatwg r4328)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3463
retrieving revision 1.3464
diff -u -d -r1.3463 -r1.3464
--- Overview.html 25 Oct 2009 06:50:28 -0000 1.3463
+++ Overview.html 25 Oct 2009 07:08:47 -0000 1.3464
@@ -2649,11 +2649,13 @@
<li>Otherwise, return <var title="">number1</var> and
<var title="">number2</var>.</li>
- </ol><p>The algorithm to <dfn id="find-a-number">find a number</dfn> is as follows. It is
- given a string and a starting position, and returns either nothing,
- a number, or an error condition.</p>
+ </ol><p>The algorithm to <dfn id="find-a-number">find a number</dfn> is as follows. It
+ returns either nothing, a number, or an error condition.</p>
- <ol><li><p><a href="#collect-a-sequence-of-characters">Collect a sequence of characters</a> that are not
+ <ol><li><p>Let <var title="">input</var> and <var title="">position</var> be the same variables as those of the same
+ name in the algorithm that invoked these steps.</li>
+
+ <li><p><a href="#collect-a-sequence-of-characters">Collect a sequence of characters</a> that are not
U+002E FULL STOP characters (.) and are not characters in the range
U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9).</li>
Received on Sunday, 25 October 2009 07:08:51 UTC