From 36ebe76e0a9fa3666458c785156b6ca5e7235626 Mon Sep 17 00:00:00 2001 From: octref Date: Fri, 13 Mar 2015 09:00:17 -0400 Subject: [PATCH] Fix `_.reduce` doc --- lodash.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.src.js b/lodash.src.js index 47772e21a..66db58f35 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -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