From 675965da4f0061935aa0d4672f9191b2859c1116 Mon Sep 17 00:00:00 2001 From: Andrea Bogazzi Date: Thu, 18 Sep 2014 01:39:15 +0200 Subject: [PATCH] Update circle.class.js fixed typo. --- src/shapes/circle.class.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shapes/circle.class.js b/src/shapes/circle.class.js index 66b88124..f442bf32 100644 --- a/src/shapes/circle.class.js +++ b/src/shapes/circle.class.js @@ -86,7 +86,7 @@ toObject: function(propertiesToInclude) { return extend(this.callSuper('toObject', propertiesToInclude), { radius: this.get('radius'), - startAnlge: this.startAngle, + startAngle: this.startAngle, endAngle: this.endAngle }); },