- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 24 Aug 2010 23:51:38 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/2dcontext
In directory hutz:/tmp/cvs-serv10920
Modified Files:
Overview.html
Log Message:
correct some of the informative prose (whatwg r5343)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/2dcontext/Overview.html,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- Overview.html 11 Aug 2010 20:32:48 -0000 1.63
+++ Overview.html 24 Aug 2010 23:51:36 -0000 1.64
@@ -311,7 +311,7 @@
<h1>HTML Canvas 2D Context</h1>
<h2 class="no-num no-toc" id="generatedID"></h2>
- <h2 class="no-num no-toc" id="editor-s-draft-11-august-2010">Editor's Draft 11 August 2010</h2>
+ <h2 class="no-num no-toc" id="editor-s-draft-24-august-2010">Editor's Draft 24 August 2010</h2>
<dl><dt>Latest Published Version:</dt>
<dd><a href="http://www.w3.org/TR/2dcontext/">http://www.w3.org/TR/2dcontext/</a></dd>
<dt>Latest Editor's Draft:</dt>
@@ -406,7 +406,7 @@
Group</a> is the W3C working group responsible for this
specification's progress along the W3C Recommendation
track.
- This specification is the 11 August 2010 Editor's Draft.
+ This specification is the 24 August 2010 Editor's Draft.
</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group
actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working
group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><!-- (this text is from the RDFa+HTML spec --><p>This specification is an extension to the HTML5 language. All
@@ -1680,7 +1680,7 @@
<dd>
- <p>Adds the given point to the current path, connected to the previous one by a quadratic Bézier curve with the given control point.</p>
+ <p>Adds the given point to the current subpath, connected to the previous one by a quadratic Bézier curve with the given control point.</p>
</dd>
@@ -1688,7 +1688,7 @@
<dd>
- <p>Adds the given point to the current path, connected to the previous one by a cubic Bézier curve with the given control points.</p>
+ <p>Adds the given point to the current subpath, connected to the previous one by a cubic Bézier curve with the given control points.</p>
</dd>
@@ -1696,10 +1696,10 @@
<dd>
- <p>Adds a point to the current path, connected to the previous one
- by a straight line, then adds a second point to the current path,
- connected to the previous one by an arc whose properties are
- described by the arguments.</p>
+ <p>Adds a point to the current subpath, connected to the previous
+ one by a straight line, then adds a second point to the current
+ subpath, connected to the previous one by an arc whose properties
+ are described by the arguments.</p>
<p>Throws an <code>INDEX_SIZE_ERR</code> exception if the given
radius is negative.</p>
Received on Tuesday, 24 August 2010 23:51:40 UTC