html5/spec Overview.html,1.2679,1.2680

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv1463

Modified Files:
	Overview.html 
Log Message:
Minor fixups to the bezierCurveTo() intro and make arcTo() behaviour clearer by merging two paragraphs. (whatwg r3477)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2679
retrieving revision 1.2680
diff -u -d -r1.2679 -r1.2680
--- Overview.html	27 Jul 2009 23:48:02 -0000	1.2679
+++ Overview.html	27 Jul 2009 23:51:14 -0000	1.2680
@@ -21316,7 +21316,7 @@
 
    </dd>
 
-   <dt><var title="">context</var> . <code title="dom-context-2d-bezierCurveTo"><a href="#dom-context-2d-beziercurveto">bezierCurveTo</a></code>(<var title="">cpx</var>, <var title="">cpy</var>, <var title="">x</var>, <var title="">y</var>)</dt>
+   <dt><var title="">context</var> . <code title="dom-context-2d-bezierCurveTo"><a href="#dom-context-2d-beziercurveto">bezierCurveTo</a></code>(<var title="">cp1x</var>, <var title="">cp1y</var>, <var title="">cp2x</var>, <var title="">cp2y</var>, <var title="">x</var>, <var title="">y</var>)</dt>
 
    <dd>
 
@@ -21491,12 +21491,12 @@
   point tangent to the half-infinite line that ends at the point (<var title="">x1</var>, <var title="">y1</var>) and crosses the point
   (<var title="">x2</var>, <var title="">y2</var>). The points at
   which this circle touches these two lines are called the start and
-  end tangent points respectively.</p>
-
-  <p>The method must connect the point (<var title="">x0</var>, <var title="">y0</var>) to the start tangent point by a straight line,
-  adding the start tangent point to the subpath, and then must connect
-  the start tangent point to the end tangent point by <var title="">The Arc</var>, adding the end tangent point to the
-  subpath.</p>
+  end tangent points respectively. The method must connect the point
+  (<var title="">x0</var>, <var title="">y0</var>) to the start
+  tangent point by a straight line, adding the start tangent point to
+  the subpath, and then must connect the start tangent point to the
+  end tangent point by <var title="">The Arc</var>, adding the end
+  tangent point to the subpath.</p>
 
   <hr><p>The <dfn id="dom-context-2d-arc" title="dom-context-2d-arc"><code>arc(<var title="">x</var>, <var title="">y</var>, <var title="">radius</var>,
   <var title="">startAngle</var>, <var title="">endAngle</var>, <var title="">anticlockwise</var>)</code></dfn> method draws an arc. If

Received on Monday, 27 July 2009 23:51:27 UTC