diff options
author | PoziWorld <poziworld@gmail.com> | 2014-09-22 15:23:06 -0700 |
---|---|---|
committer | PoziWorld <poziworld@gmail.com> | 2014-09-22 15:23:06 -0700 |
commit | 4fc10cbae9e66ec7e21b3e36deb102224709f364 (patch) | |
tree | 8f37399ea5225ba9eb5c80b7e10b550a4f605522 | |
parent | 7984a87786effaed2ed6e517c899cc68204e4e6b (diff) | |
download | svg.js-4fc10cbae9e66ec7e21b3e36deb102224709f364.tar.gz svg.js-4fc10cbae9e66ec7e21b3e36deb102224709f364.zip |
Grammatical error: a SVG => an SVG
-rwxr-xr-x | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -10,9 +10,9 @@ See [svgjs.com](http://svgjs.com) for an introduction, [documentation](http://do ## Usage -### Create a SVG document +### Create an SVG document -Use the `SVG()` function to create a SVG document within a given html element: +Use the `SVG()` function to create an SVG document within a given html element: ```javascript var draw = SVG('drawing').size(300, 300) @@ -2824,7 +2824,7 @@ The dynamic representation: ] ``` -Precompiling it as a `SVG.PointArray`: +Precompiling it as an `SVG.PointArray`: ```javascript new SVG.PointArray([ @@ -2858,7 +2858,7 @@ The dynamic representation: ] ``` -Precompiling it as a `SVG.PathArray`: +Precompiling it as an `SVG.PathArray`: ```javascript new SVG.PathArray([ @@ -3108,7 +3108,7 @@ SVG.extend(SVG.Ellipse, SVG.Path, SVG.Polygon, { Here are a few nice plugins that are available for svg.js: ### absorb -[svg.absorb.js](https://github.com/wout/svg.absorb.js) absorb raw SVG data into a svg.js instance. +[svg.absorb.js](https://github.com/wout/svg.absorb.js) absorb raw SVG data into an svg.js instance. ### draggable [svg.draggable.js](https://github.com/wout/svg.draggable.js) to make elements draggable. |