diff --git a/master/paths.html b/master/paths.html
index 115020ef..ff139b6e 100644
--- a/master/paths.html
+++ b/master/paths.html
@@ -466,11 +466,13 @@
The "lineto" commands
that absolute coordinates will follow; h
(lowercase) indicates that relative coordinates will
follow. Multiple x values can be provided (although usually
- this doesn't make sense). An H or h
- command is equivalent to an L or l
- command with 0 specified for the y coordinate.
- At the end of the command, the new current point is
- taken from the final coordinate value.
+ this doesn't make sense).
+ An H command is equivalent to
+ an L command with the y coordinate equal
+ to the current y coordinate. An h command is
+ equivalent to an l command with 0 specified
+ for the y coordinate. At the end of the command, the new
+ current point is taken from the final coordinate value.
V (absolute)
@@ -482,9 +484,12 @@ The "lineto" commands
absolute coordinates will follow; v
(lowercase) indicates that relative coordinates will
follow. Multiple y values can be provided (although usually
- this doesn't make sense). A V or v
- command is equivalent to an L or l
- command with 0 specified for the x coordinate.
+ this doesn't make sense).
+ A V command is equivalent to
+ an L command with the x coordinate equal
+ to the current x coordinate. A v command is
+ equivalent to an l command with 0 specified
+ for the x coordinate.
At the end of the command, the new current point is
taken from the final coordinate value. |