From ff5f06b9f050c178ca6580e691b47b6b6ec10136 Mon Sep 17 00:00:00 2001 From: mori_9tarou Date: Thu, 14 Jan 2016 14:47:28 +0900 Subject: [PATCH] Fix `_.pullAll` doc example typo. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 707ca0bcc..a22b705e5 100644 --- a/lodash.js +++ b/lodash.js @@ -6029,7 +6029,7 @@ * * var array = [1, 2, 3, 1, 2, 3]; * - * _.pull(array, [2, 3]); + * _.pullAll(array, [2, 3]); * console.log(array); * // => [1, 1] */