Merge the 'The curve commands' section into an earlier section.
--- a/master/paths.html Mon Aug 18 07:56:56 2014 +0100
+++ b/master/paths.html Fri Aug 22 00:03:45 2014 +1000
@@ -295,8 +295,34 @@
</div>
-<p>The following sections list the commands.</p>
+<p>The following sections list the commands. Those that
+draw straight line segments include the <a href="paths.html#PathDataLinetoCommands">lineto commands</a>
+(<strong>L</strong>, <strong>l</strong>,
+<strong>H</strong>, <strong>h</strong>, <strong>V</strong> and <strong>v</strong>)
+and the <a href="#paths.html#PathDataClosePathCommand">close path commands</a>
+(<strong>Z</strong> and <strong>z</strong>). These three groups of commands draw curves:</p>
+<ul>
+ <li><a href="paths.html#PathDataCubicBezierCommands">Cubic
+ Bézier commands</a> (<strong>C</strong>,
+ <strong>c</strong>, <strong>S</strong> and
+ <strong>s</strong>). A cubic Bézier segment is defined
+ by a start point, an end point, and two control points.</li>
+
+ <li><a
+ href="paths.html#PathDataQuadraticBezierCommands">Quadratic
+ Bézier commands</a> (<strong>Q</strong>,
+ <strong>q</strong>, <strong>T</strong> and
+ <strong>t</strong>). A quadratic Bézier segment is
+ defined by a start point, an end point, and one control
+ point.</li>
+
+ <li><a
+ href="paths.html#PathDataEllipticalArcCommands">Elliptical
+ arc commands</a> (<strong>A</strong> and <strong>a</strong>).
+ An elliptical arc segment draws a segment of an ellipse.</li>
+</ul>
+
<h3 id="PathDataMovetoCommands">The <strong>"moveto"</strong> commands</h3>
<p>The "moveto" commands (<strong>M</strong> or
@@ -481,31 +507,6 @@
</div>
-<h3 id="PathDataCurveCommands">The curve commands</h3>
-
-<p>These three groups of commands draw curves:</p>
-
-<ul>
- <li><a href="paths.html#PathDataCubicBezierCommands">Cubic
- Bézier commands</a> (<strong>C</strong>,
- <strong>c</strong>, <strong>S</strong> and
- <strong>s</strong>). A cubic Bézier segment is defined
- by a start point, an end point, and two control points.</li>
-
- <li><a
- href="paths.html#PathDataQuadraticBezierCommands">Quadratic
- Bézier commands</a> (<strong>Q</strong>,
- <strong>q</strong>, <strong>T</strong> and
- <strong>t</strong>). A quadratic Bézier segment is
- defined by a start point, an end point, and one control
- point.</li>
-
- <li><a
- href="paths.html#PathDataEllipticalArcCommands">Elliptical
- arc commands</a> (<strong>A</strong> and <strong>a</strong>).
- An elliptical arc segment draws a segment of an ellipse.</li>
-</ul>
-
<h3 id="PathDataCubicBezierCommands">The cubic Bézier curve commands</h3>
<p>The cubic Bézier commands are as follows:</p>