Fix typo in _.isEqual.

Former-commit-id: 9d5065953c51d12f1308dd8c0c142b6505efe765
This commit is contained in:
John-David Dalton
2012-09-10 23:04:42 -07:00
parent b406246689
commit 5f085ccb52

View File

@@ -1520,7 +1520,7 @@
while (length--) {
if (stackA[length] == a) {
return stackA[length] == b;
return stackB[length] == b;
}
}