Fix _.pullAll doc example typo. [ci skip]

This commit is contained in:
mori_9tarou
2016-01-14 14:47:28 +09:00
committed by John-David Dalton
parent 06395f8436
commit ff5f06b9f0

View File

@@ -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]
*/