Skip to content

Commit

Permalink
Fix typo on calling _.extend
Browse files Browse the repository at this point in the history
Typo on extending objects, as it missed a t.
  • Loading branch information
Miguel Ángel committed May 9, 2016
1 parent e65ad72 commit d425d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/api/attributes.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ var setData = function(el, name, value) {
if (typeof name === 'string' && value !== undefined) {
el.data[name] = value;
} else if (typeof name === 'object') {
_.exend(el.data, name);
_.extend(el.data, name);
}
};

Expand Down

0 comments on commit d425d6b

Please sign in to comment.