From 67cd43d97a321177d97ba6bc54b1fb118cf7532f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 16 Jan 2016 00:30:55 -0800 Subject: [PATCH] Reduce description mentions of `eachFunc`. [ci skip] --- lodash.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index f63d1ee18..f7287f25d 100644 --- a/lodash.js +++ b/lodash.js @@ -693,7 +693,7 @@ /** * The base implementation of methods like `_.find` and `_.findKey`, without * support for iteratee shorthands, which iterates over `collection` using - * the provided `eachFunc`. + * `eachFunc`. * * @private * @param {Array|Object} collection The collection to search. @@ -761,8 +761,7 @@ /** * The base implementation of `_.reduce` and `_.reduceRight`, without support - * for iteratee shorthands, which iterates over `collection` using the provided - * `eachFunc`. + * for iteratee shorthands, which iterates over `collection` using `eachFunc`. * * @private * @param {Array|Object} collection The collection to iterate over.