From 483210b91fa2797e883716f3e7e5ab5386b4a6df Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Sat, 5 Nov 2011 16:13:44 -0700 Subject: [PATCH] fix syntax error in set.js --- lib/set.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/set.js b/lib/set.js index 3ebfaa1..33ded98 100644 --- a/lib/set.js +++ b/lib/set.js @@ -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]; }));