summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2013-02-02 17:20:06 +0100
committerwout <wout@impinc.co.uk>2013-02-02 17:20:06 +0100
commit1c9b6af19cd1367a74b91cb88e98ec1bef2d8234 (patch)
treea64ed5b3858018bb2cb4bab85f7fffb0c54c7f2e /README.md
parent7323d05f9d09141ec81dcd78d09bdba714c1c5dd (diff)
downloadsvg.js-1c9b6af19cd1367a74b91cb88e98ec1bef2d8234.tar.gz
svg.js-1c9b6af19cd1367a74b91cb88e98ec1bef2d8234.zip
Updated opacity() method in sugar module
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 05ef0bb..2a25940 100644
--- a/README.md
+++ b/README.md
@@ -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);
```