]> source.dussan.org Git - svg.js.git/commitdiff
Updated Readme
authorwout <wout@impinc.co.uk>
Wed, 19 Dec 2012 16:11:22 +0000 (17:11 +0100)
committerwout <wout@impinc.co.uk>
Wed, 19 Dec 2012 16:11:22 +0000 (17:11 +0100)
README.md

index 304347eb4083b329d190d3fff2f655800de26a06..9488fea1d51f02636e48f425330f67fd15b969ea 100644 (file)
--- a/README.md
+++ b/README.md
@@ -83,7 +83,7 @@ Set the size of an element by a given width and height:
 ```javascript
 rect.size(200, 300);
 ```
-Same as with 'move()' the size of an element could be set by using 'attr()'. But because every type of element is handles its size differently the 'size()' function is much more convenient.
+Same as with 'move()' the size of an element could be set by using 'attr()'. But because every type of element is handles its size differently the 'size()' method is much more convenient.
 
 
 #### Removing elements
@@ -131,13 +131,13 @@ This will return a SVGRect element as a js object:
 Fill and stroke are used quite often. Therefore two convenience methods are provided:
 
 #### Fill
-The 'fill()' function is a pretty alternative to the 'attr()' method:
+The 'fill()' method is a pretty alternative to the 'attr()' method:
 ```javascript
 rect.fill({ color: '#f06', opacity: 0.6 });
 ```
 
 #### Stroke
-The 'stroke()' function is similar to 'fill()':
+The 'stroke()' method is similar to 'fill()':
 ```javascript
 rect.stroke({ color: '#f06', opacity: 0.6, width: 5 });
 ```