diff options
author | wout <wout@impinc.co.uk> | 2013-02-02 17:42:14 +0100 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2013-02-02 17:42:14 +0100 |
commit | e5fb908aa5e2f68ed75684662a7f22ad182f4cc9 (patch) | |
tree | d95434bd467755fb88295b69843797e671a44dfd | |
parent | 07cd311451c318678a0139b10441364f3f4b9e38 (diff) | |
download | svg.js-e5fb908aa5e2f68ed75684662a7f22ad182f4cc9.tar.gz svg.js-e5fb908aa5e2f68ed75684662a7f22ad182f4cc9.zip |
Updated README
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ _Note that this generates an `<ellipse>` element instead of a `<circle>`. This c The line element always takes four arguments, `x1`, `y1`, `x2` and `y2`: ```javascript -var star = draw.line(0, 0, 100, 150); +var line = draw.line(0, 0, 100, 150); ``` |