From f23a458319d65849c7371cc7f819027efdd6e8d0 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 4 May 2014 10:12:58 -0700 Subject: [PATCH] Fix typo in `_.pullAt`. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 43d4dc4e8..2a486a64f 100644 --- a/lodash.js +++ b/lodash.js @@ -2985,7 +2985,7 @@ while (length--) { var index = indexes[length]; if (index != previous) { - var previous = removal; + var previous = index; splice.call(array, index, 1); } }