From 53bde1238c7e0cfca3dfea33c72d0057c8b224aa Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 10 Apr 2016 22:39:09 -0700 Subject: [PATCH] Replace "invoking" with "and invokes". [ci skip] --- lodash.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lodash.js b/lodash.js index bac9c7544..c468501b1 100644 --- a/lodash.js +++ b/lodash.js @@ -2686,7 +2686,7 @@ /** * The base implementation of `baseForOwn` which iterates over `object` - * properties returned by `keysFunc` invoking `iteratee` for each property. + * properties returned by `keysFunc` and invokes `iteratee` for each property. * Iteratee functions may exit iteration early by explicitly returning `false`. * * @private @@ -8309,7 +8309,7 @@ } /** - * Iterates over elements of `collection` invoking `iteratee` for each element. + * Iterates over elements of `collection` and invokes `iteratee` for each element. * The iteratee is invoked with three arguments: (value, index|key, collection). * Iteratee functions may exit iteration early by explicitly returning `false`. * @@ -11898,9 +11898,9 @@ /** * Iterates over own and inherited enumerable string keyed properties of an - * object invoking `iteratee` for each property. The iteratee is invoked with - * three arguments: (value, key, object). Iteratee functions may exit iteration - * early by explicitly returning `false`. + * object and invokes `iteratee` for each property. The iteratee is invoked + * with three arguments: (value, key, object). Iteratee functions may exit + * iteration early by explicitly returning `false`. * * @static * @memberOf _ @@ -11961,10 +11961,10 @@ } /** - * Iterates over own enumerable string keyed properties of an object invoking - * `iteratee` for each property. The iteratee is invoked with three arguments: - * (value, key, object). Iteratee functions may exit iteration early by - * explicitly returning `false`. + * Iterates over own enumerable string keyed properties of an object and + * invokes `iteratee` for each property. The iteratee is invoked with three + * arguments: (value, key, object). Iteratee functions may exit iteration + * early by explicitly returning `false`. * * @static * @memberOf _ @@ -14281,7 +14281,7 @@ }); /** - * Creates a function that iterates over `pairs` invoking the corresponding + * Creates a function that iterates over `pairs` and invokes the corresponding * function of the first predicate to return truthy. The predicate-function * pairs are invoked with the `this` binding and arguments of the created * function.