diff --git a/src/path/Segment.js b/src/path/Segment.js index a074ea2d..a2886ce0 100644 --- a/src/path/Segment.js +++ b/src/path/Segment.js @@ -108,8 +108,8 @@ var Segment = this.Segment = Base.extend({ toString: function() { return '{ point: ' + this.point - + (this.handleIn ? ', handleIn '+ this.handleIn : '') - + (this.handleOut ? ', handleOut ' + this.handleOut : '') + + (this.handleIn ? ', handleIn: ' + this.handleIn : '') + + (this.handleOut ? ', handleOut: ' + this.handleOut : '') + ' }'; } });