From 5fc94f8c98602d8c5081e9f3c67cb409ff75eb56 Mon Sep 17 00:00:00 2001 From: wout Date: Sat, 29 Dec 2012 15:30:21 +0100 Subject: [PATCH] Updated REAME --- README.md | 6 +++--- 1 file 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 `` element rather than a ``. This choice has been made to keep the size of the library down._ +_Note that this generates an `` element instead of a ``. 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 `` element is not implemented. Therefore you might want to use the `polyline()` method to create a line._ +_Not unlike the `` element, the svg `` 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 -- 2.39.5