aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnowyplover <the.estuary@gmail.com>2015-11-11 23:49:10 -0800
committersnowyplover <the.estuary@gmail.com>2015-11-11 23:49:10 -0800
commitab6bdadf7a843b74eddedf5e7b947f03f8e38870 (patch)
tree817655be4ee07dc52b07d179af8d990c785b0bad
parent2626c6a463d41e6c89095327f8e7968d1b7c2869 (diff)
downloadsvg.js-ab6bdadf7a843b74eddedf5e7b947f03f8e38870.tar.gz
svg.js-ab6bdadf7a843b74eddedf5e7b947f03f8e38870.zip
Fix formatting mistake
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c3d83c7..d2bfec9 100644
--- a/README.md
+++ b/README.md
@@ -3701,7 +3701,7 @@ It should be emphasized that in the configuration object passed to `SVG.invent()
- `construct` does not supply constructors, but rather methods that are likely to *call* constructors;
- `create` specifies the constructor for the type you are defining, and is not analogous to `Object.create()`.
-When defining specialized svg elements (such as SVG.Rounded in the example above), the function specified by `create` needs to do all the work of adding the element to the DOM for the svg document and connecting the DOM node to the SVG.js interface. All this is done automatically when the value of `create` is a string identifying an element type. If needed, see the source for a sense of how to do it explicitly.
+When defining specialized svg elements (such as `SVG.Rounded` in the example above), the function specified by `create` needs to do all the work of adding the element to the DOM for the svg document and connecting the DOM node to the SVG.js interface. All this is done automatically when the value of `create` is a string identifying an element type. If needed, see the source for a sense of how to do it explicitly.
Though the defaults are geared toward creating svg elements for the SVG.js framework, `SVG.invent()` can be used as a generalized function for defining types in Javascript. When used in this more general way, the function supplied as a value for `create` should be written as an ordinary JS constructor. (Indeed, the function is simply returned as the constructor for your newly defined type.)