- From: Sam Ruby via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 13 Nov 2012 16:14:23 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/2dcontext
In directory hutz:/tmp/cvs-serv29918
Modified Files:
Overview.html
Log Message:
commit 112bb91837625961213bb0cac23b77e0c71e5b8e
Author: Jay Munro <jaymunro@microsoft.com>
Date: Tue Nov 13 08:08:41 2012 -0800
changed Array to list or sequence per bug 19934
Changed the wording slightly to make array under dashed lines
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/2dcontext/Overview.html,v
retrieving revision 1.190
retrieving revision 1.191
diff -u -d -r1.190 -r1.191
--- Overview.html 9 Nov 2012 22:43:22 -0000 1.190
+++ Overview.html 13 Nov 2012 16:14:21 -0000 1.191
@@ -1072,7 +1072,7 @@
<dd>
<p>Sets the current line dash pattern (as used when stroking). The
- argument is an array of distances for which to alternately have
+ argument is a list of distances for which to alternately have
the line on and the line off.</p>
</dd>
@@ -1184,10 +1184,9 @@
<ol>
- <li><p>Let <var title="">a</var> be a copy of the array provided as
- the argument.</p></li>
+ <li><p>Let <var title="">a</var> be the argument.</p></li>
- <li><p>If any value in the array is not finite (e.g. an Infinity or
+ <li><p>If any value in <var title="">a</var> is not finite (e.g. an Infinity or
a NaN value), or if any value is negative (less than zero), then
abort these steps (without throwing an exception; user agents could
show a message on a developer console, though, as that would be
@@ -1202,7 +1201,7 @@
</ol>
<p>When the <dfn id="dom-context-2d-getlinedash" title="dom-context-2d-getLineDash"><code>getLineDash()</code></dfn>
- method is invoked, it must return a newly created array whose values
+ method is invoked, it must return a newly created sequence whose values
are the values of the object's <a href="#dash-list">dash list</a>, in the same
order.</p>
Received on Tuesday, 13 November 2012 16:14:39 UTC