Minor clean up.

This commit is contained in:
Jürg Lehni 2013-02-28 17:30:19 -08:00
parent 980b772cea
commit 1a37bb7252

View file

@ -412,7 +412,7 @@ new function() {
}
}
// Create apply methos for attributes, and merge in those for SvgStlyes:
// Create apply-functions for attributes, and merge in those for SvgStlyes:
var attributes = Base.each(SvgStyles, function(entry) {
this[entry.attribute] = function(item, value, name, node) {
item._style[entry.set](convertValue(value, entry.type));
@ -426,7 +426,7 @@ new function() {
'clip-path': function(item, value) {
// http://www.w3.org/TR/SVG/masking.html#ClipPathProperty
var def = getDefinition(value);
var def = getDefinition(value);
return def && createClipGroup(item, def.clone().reduce());
},