aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwout <wout@impinc.co.uk>2014-01-29 21:28:25 +0100
committerwout <wout@impinc.co.uk>2014-01-29 21:28:25 +0100
commita52a1d7e362382c93d71d2cea27a4a691cd6d215 (patch)
tree55733c4d51a4d665d10fdd758895e67bc65919cd
parent5b6736666dd85f8a063b87e6c6483ea47be4391c (diff)
downloadsvg.js-a52a1d7e362382c93d71d2cea27a4a691cd6d215.tar.gz
svg.js-a52a1d7e362382c93d71d2cea27a4a691cd6d215.zip
Updated README
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 83fa1d4..04acf52 100644
--- a/README.md
+++ b/README.md
@@ -1799,16 +1799,16 @@ The dynamic representation:
new SVG.PointArray([[0, 0], [100, 100]])
```
-Note that every instance of `SVG.Polyline` and `SVG.Polygon` carry a reference to the `SVG.PointArray` instance:
+Note that every instance of `SVG.Polyline` and `SVG.Polygon` carries a reference to the `SVG.PointArray` instance:
```javascript
polygon.array //-> returns the SVG.PointArray instance
```
-_`SVG.PointArray` inherits from `SVG.Array`_
+_Javascript inheritance stack: `SVG.PointArray` < `SVG.Array`_
### SVG.PathArray
-Path arrays carry object with the representation of the path string:
+Path arrays carry objects representing every point in a path string:
```javascript
'M 0 0 L 100 100 z'
@@ -1830,7 +1830,7 @@ Note that every instance of `SVG.Path` carries a reference to the `SVG.PathArray
polygon.array //-> returns the SVG.PointArray instance
```
-_`SVG.PathArray` inherits from `SVG.Array`_
+_Javascript inheritance stack: `SVG.PathArray` < `SVG.Array`_
### morph()