diff --git a/src/svg.js b/src/svg.js index 0b58251..13c8868 100644 --- a/src/svg.js +++ b/src/svg.js @@ -2694,7 +2694,7 @@ function gradientRadial(defs, cx, cy, r, fx, fy) { - pathString (string) #optional path string in SVG format. * Path string consists of one-letter commands, followed by comma seprarated arguments in numercal form. Example: | "M10,20L30,40" - * Here we can see two commands: “M”, with arguments `(10, 20)` and “L” with arguments `(30, 40)`. Upper case letter mean command is absolute, lower case—relative. + * This example features two commands: “M”, with arguments `(10, 20)` and “L” with arguments `(30, 40)`. Uppercase commands indicate absolute coordinates. Lowercase commands position relative to the previous coordinates. * #

Here is short list of commands available, for more details see SVG path string format or article about path strings at MDN.

#
CommandNameParameters