Merge pull request #428 from ac3522/master
authorDmitry Baranovskiy <dmitry.baranovskiy@gmail.com>
Tue, 15 Nov 2011 23:08:46 +0000 (15:08 -0800)
committerDmitry Baranovskiy <dmitry.baranovskiy@gmail.com>
Tue, 15 Nov 2011 23:08:46 +0000 (15:08 -0800)
Updating documentation on Raphael.format method

raphael.core.js

index 39ff7e2..7780428 100644 (file)
      |     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;
     eve.on("DOMload", function () {
         loaded = true;
     });
-})();
\ No newline at end of file
+})();