Fix typo in _.pullAt.

This commit is contained in:
John-David Dalton
2014-05-04 10:12:58 -07:00
parent 1e324103cc
commit f23a458319

View File

@@ -2985,7 +2985,7 @@
while (length--) {
var index = indexes[length];
if (index != previous) {
var previous = removal;
var previous = index;
splice.call(array, index, 1);
}
}