Fix white-space mix-up.

This commit is contained in:
Jürg Lehni 2014-02-20 19:52:09 +01:00
parent 64fa328f65
commit 9c09be90f3

View file

@ -180,21 +180,21 @@ PathItem.inject(/** @lends PathItem# */{
path2.remove(); path2.remove();
// And then, we are done. // And then, we are done.
return result.reduce(); return result.reduce();
}, },
/** /**
* Returns the winding contribution of the given point with respect to this * Returns the winding contribution of the given point with respect to this
* PathItem. * PathItem.
* *
* @param {Point} point the location for which to determine the winding * @param {Point} point the location for which to determine the winding
* direction * direction
* @param {Boolean} horizontal wether we need to consider this point as * @param {Boolean} horizontal wether we need to consider this point as
* part of a horizontal curve * part of a horizontal curve
* @return {Number} the winding number * @return {Number} the winding number
*/ */
_getWinding: function(point, horizontal) { _getWinding: function(point, horizontal) {
return PathItem._getWinding(point, this._getMonoCurves(), horizontal); return PathItem._getWinding(point, this._getMonoCurves(), horizontal);
}, },
/** /**
* {@grouptitle Boolean Path Operations} * {@grouptitle Boolean Path Operations}