diff options
author | wout <wout@impinc.co.uk> | 2013-02-02 17:20:06 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-02-02 17:20:06 +0100 |
commit | 1c9b6af19cd1367a74b91cb88e98ec1bef2d8234 (patch) | |
tree | a64ed5b3858018bb2cb4bab85f7fffb0c54c7f2e /README.md | |
parent | 7323d05f9d09141ec81dcd78d09bdba714c1c5dd (diff) | |
download | svg.js-1c9b6af19cd1367a74b91cb88e98ec1bef2d8234.tar.gz svg.js-1c9b6af19cd1367a74b91cb88e98ec1bef2d8234.zip |
Updated opacity() method in sugar module
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ var draw = svg('paper').size('100%', '100%'); Rects have two arguments, their `width` and `height`: ```javascript -var text = draw.rect(100, 100); +var rect = draw.rect(100, 100); ``` |