summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2012-12-29 15:30:21 +0100
committerwout <wout@impinc.co.uk>2012-12-29 15:30:21 +0100
commit5fc94f8c98602d8c5081e9f3c67cb409ff75eb56 (patch)
treedf40749d1e9b07e8f9887233b8cbfef2ece4dac1
parent331068a979be8b735e92f074ce0d2438f5f2127b (diff)
downloadsvg.js-5fc94f8c98602d8c5081e9f3c67cb409ff75eb56.tar.gz
svg.js-5fc94f8c98602d8c5081e9f3c67cb409ff75eb56.zip
Updated REAME
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index c5130e5..3e278fc 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ The only argument necessary for a circle is the diameter:
var circle = draw.circle(100);
```
-_Note that this generates an `<ellipse>` element rather than a `<circle>`. This choice has been made to keep the size of the library down._
+_Note that this generates an `<ellipse>` element instead of a `<circle>`. This choice has been made to keep the size of the library down._
### Polyline
@@ -68,7 +68,7 @@ var polyline = draw.polyline('10,20 30,40 50,60');
Polyline strings consist of a list of points separated by spaces: `x,y x,y x,y`.
-_Note that the svg `<line>` element is not implemented. Therefore you might want to use the `polyline()` method to create a line._
+_Not unlike the `<circle>` element, the svg `<line>` element has not been implemented to keep the library as small as possible. Therefore you might want to use the `polyline()` method to create a single line segment._
### Polygon
@@ -79,7 +79,7 @@ The polygon element, unlike the polyline element, defines a closed shape consist
var polygon = draw.polygon('10,20 30,40 50,60');
```
-Polygon strings are exactly the same as polyline strings. There is no need to close the shape as the first and last point will be automatically connected.
+Polygon strings are exactly the same as polyline strings. There is no need to close the shape as the first and last point will be connected automatically.
### Path