From: Andres Kalle Date: Thu, 25 Dec 2014 23:03:52 +0000 (+0200) Subject: Gave example variables less confusing names X-Git-Tag: 1.1.0~22^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d1c7202aad3ad422a6c0d7f0cac00ce4a1cd9bf5;p=svg.js.git Gave example variables less confusing names --- diff --git a/README.md b/README.md index 8066600..7a8be57 100755 --- a/README.md +++ b/README.md @@ -221,7 +221,7 @@ _Javascript inheritance stack: `SVG.Ellipse` < `SVG.Shape` < `SVG.Element`_ Ellipses can also be redefined by their radii: ```javascript -rect.radius(75, 50) +ellipse.radius(75, 50) ``` __`returns`: `itself`__ @@ -243,7 +243,7 @@ _Note that this generates an `` element instead of a ``. This c Circles can also be redefined by their radius: ```javascript -rect.radius(75) +circle.radius(75) ``` __`returns`: `itself`__