From: Nicholas Canzoneri Date: Sun, 23 Oct 2011 03:12:44 +0000 (-0400) Subject: Updating comments on Raphael.format method to reflect actual behavior. X-Git-Tag: v2.0.1~1^2~1^2 X-Git-Url: http://git.roojs.org/?p=raphael;a=commitdiff_plain;h=6cfe4aaacab0b4e7e8dd09a9d1b4814b2351cdc5 Updating comments on Raphael.format method to reflect actual behavior. --- diff --git a/raphael.core.js b/raphael.core.js index 39ff7e2..7780428 100644 --- a/raphael.core.js +++ b/raphael.core.js @@ -4524,7 +4524,7 @@ | width = 40, | height = 50; | // this will draw a rectangular shape equivalent to "M10,20h40v50h-40z" - | paper.path(Raphael.format("M{1},{2}h{3}v{4}h{5}z", x, y, width, height, -width)); + | paper.path(Raphael.format("M{0},{1}h{2}v{3}h{4}z", x, y, width, height, -width)); \*/ R.format = function (token, params) { var args = R.is(params, array) ? [0][concat](params) : arguments; @@ -4638,4 +4638,4 @@ eve.on("DOMload", function () { loaded = true; }); -})(); \ No newline at end of file +})();