diff --git a/core/utils/svg_paths.js b/core/utils/svg_paths.js index d380d45f6..02602e4ac 100644 --- a/core/utils/svg_paths.js +++ b/core/utils/svg_paths.js @@ -39,9 +39,9 @@ const point = function(x, y) { * These coordinates are unitless and hence in the user coordinate system. * @param {string} command The command to use. * Should be one of: c, C, s, S, q, Q. - * @param {!Array} points An array containing all of the points to pass to the - * curve command, in order. The points are represented as strings of the - * format ' x, y '. + * @param {!Array} points An array containing all of the points to pass + * to the curve command, in order. The points are represented as strings of + * the format ' x, y '. * @return {string} A string defining one or more Bezier curves. See the MDN * documentation for exact format. * @public