Merge pull request #541 from danallison/master

Fix old `pullAt` doc example. [ci skip]
This commit is contained in:
John-David Dalton
2014-05-06 10:56:43 -07:00

View File

@@ -2968,7 +2968,7 @@
* @example
*
* var array = [5, 10, 15, 20];
* var evens = _.removeAt(array, [1, 3]);
* var evens = _.pullAt(array, [1, 3]);
*
* console.log(array);
* // => [5, 15]