]> source.dussan.org Git - svg.js.git/commitdiff
add missing add in function params 273/head
authorsebastian krämer <sk@dotob.de>
Mon, 13 Oct 2014 08:27:06 +0000 (10:27 +0200)
committersebastian krämer <sk@dotob.de>
Mon, 13 Oct 2014 08:27:06 +0000 (10:27 +0200)
README.md

index 80666006a1acb4991b9da09ff0501d106906c2c7..99832ab0f630b0309604a596bbb97c4a0cb21275 100755 (executable)
--- a/README.md
+++ b/README.md
@@ -2395,7 +2395,7 @@ path.marker('end', 20, 20, function(add) {
 The `marker()` method can be used in three ways. Firstly, a marker can be created on any container element (e.g. svg, nested, group, ...). This is useful if you plan to reuse the marker many times so it will create a marker in the defs but not show it yet:
 
 ```javascript
-var marker = draw.marker(10, 10, function() {
+var marker = draw.marker(10, 10, function(add) {
   add.rect(10, 10)
 })
 ```
@@ -2403,7 +2403,7 @@ var marker = draw.marker(10, 10, function() {
 Secondly a marker can be created and applied directly on its target element:
 
 ```javascript
-path.marker('start', 10, 10, function() {
+path.marker('start', 10, 10, function(add) {
   add.circle(10).fill('#f06')
 })
 ```