fix syntax error in set.js

This commit is contained in:
Sami Samhuri 2011-11-05 16:13:44 -07:00
parent 8b5841587f
commit 483210b91f

View file

@ -63,7 +63,7 @@ Set.prototype.toArray = function() {
};
Set.prototype.union = function(other) {
var ms = this.members;
var ms = this.members
, u = ownProps(this.members).map(function(k) { return ms[k]; });
ms = other.members;
u = u.concat(ownProps(ms).map(function(k) { return ms[k]; }));