From 42bcd5bcf880129ab218505129484b87cedf9adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?KB=20J=C3=B8rgensen?= Date: Mon, 22 Jan 2018 10:14:42 +0100 Subject: [PATCH] Fixed typo in comment. --- editor/svgcanvas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index 7071410d..a41050b6 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -188,7 +188,7 @@ var getJsonFromSvgElement = this.getJsonFromSvgElement = function(data) { children: [], }; - // Itrate attributes + // Iterate attributes for(var i=0; i < data.attributes.length; i++) { retval.attr[data.attributes[i].name] = data.attributes[i].value; };