]> source.dussan.org Git - svg.js.git/commitdiff
Fixed error in README
authorWout <wout@users.noreply.github.com>
Thu, 13 Oct 2016 17:16:14 +0000 (19:16 +0200)
committerGitHub <noreply@github.com>
Thu, 13 Oct 2016 17:16:14 +0000 (19:16 +0200)
README.md

index d772263520967f4614025a48d9656c15eb916a0a..c5587aea81aea5a3dfe6a8561fb1f394e4526524 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1839,8 +1839,8 @@ This will return an instance of `SVG.BBox` containing the following values:
 The `SVG.BBox` has one other nifty little feature, enter the `merge()` method. With `merge()` two `SVG.BBox` instances can be merged into one new instance, basically being the bounding box of the two original bounding boxes:
 
 ```javascript
-var box1 = draw.rect(100,100).move(50,50)
-var box2 = draw.rect(100,100).move(200,200)
+var box1 = draw.rect(100,100).move(50,50).bbox()
+var box2 = draw.rect(100,100).move(200,200).bbox()
 var box3 = box1.merge(box2)
 ```