Clean up code.

This commit is contained in:
Jürg Lehni 2013-02-08 18:46:22 -08:00
parent dc35fdbd02
commit bc5826d324
2 changed files with 2 additions and 2 deletions

View file

@ -1635,7 +1635,7 @@ var Path = this.Path = PathItem.extend(/** @lends Path# */{
x[n - i - 1] -= tmp[n - i] * x[n - i];
}
return x;
};
}
return {
// Note: Documentation for smooth() is in PathItem

View file

@ -132,6 +132,6 @@ var Symbol = this.Symbol = Base.extend(/** @lends Symbol# */{
* @return {Symbol}
*/
clone: function() {
return new Symbol(this._definition.clone());
return new Symbol(this._definition.clone());
}
});