From a58a276ffd7b156040081b3996f24f1161092f63 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 19 Feb 2016 01:04:36 -0800 Subject: [PATCH] Replace "iteratee function" with "iteratee". [ci skip] --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index c4d428ea9..2ad75fbbc 100644 --- a/lodash.js +++ b/lodash.js @@ -11527,7 +11527,7 @@ /** * Creates an object with the same keys as `object` and values generated by * running each own enumerable property of `object` through `iteratee`. The - * iteratee function is invoked with three arguments: (value, key, object). + * iteratee is invoked with three arguments: (value, key, object). * * @static * @memberOf _ @@ -13910,8 +13910,8 @@ var rangeRight = createRange(true); /** - * Invokes the iteratee function `n` times, returning an array of the results - * of each invocation. The iteratee is invoked with one argument; (index). + * Invokes the iteratee `n` times, returning an array of the results of + * each invocation. The iteratee is invoked with one argument; (index). * * @static * @memberOf _