From 815e35fda693580e9ef5b2def360ac292ceb30c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Fri, 4 Mar 2011 23:55:49 +0000 Subject: [PATCH] Fix Segment#toString(). --- src/path/Segment.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 : '') + ' }'; } });