Fix _.reduce doc

This commit is contained in:
octref
2015-03-13 09:00:17 -04:00
committed by jdalton
parent 8f8d35dec7
commit 36ebe76e0a

View File

@@ -6609,7 +6609,7 @@
* each element in `collection` through `iteratee`, where each successive
* invocation is supplied the return value of the previous. If `accumulator`
* is not provided the first element of `collection` is used as the initial
* value. The `iteratee` is bound to `thisArg`and invoked with four arguments;
* value. The `iteratee` is bound to `thisArg` and invoked with four arguments:
* (accumulator, value, index|key, collection).
*
* Many lodash methods are guarded to work as interatees for methods like