clang-format core/utils/svg_paths.js

This commit is contained in:
Aaron Dodson
2021-07-14 14:44:17 -07:00
parent 72a0761312
commit 916b49a2e5

View File

@@ -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<string>} 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<string>} 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