From 2e222fbae24cc1fcfd2a1b0af3ae6dbda58630c3 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 18 Jan 2015 22:31:35 -0800 Subject: [PATCH] Minor doc whitespace nits. [ci skip] --- lodash.src.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index c855d28ff..e645c1cc7 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -1581,8 +1581,8 @@ * @param {Array} array The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @param {*} [accumulator] The initial value. - * @param {boolean} [initFromArray] Specify using the first element of - * `array` as the initial value. + * @param {boolean} [initFromArray] Specify using the first element of `array` + * as the initial value. * @returns {*} Returns the accumulated value. */ function arrayReduce(array, iteratee, accumulator, initFromArray) { @@ -1606,8 +1606,8 @@ * @param {Array} array The array to iterate over. * @param {Function} iteratee The function invoked per iteration. * @param {*} [accumulator] The initial value. - * @param {boolean} [initFromArray] Specify using the last element of - * `array` as the initial value. + * @param {boolean} [initFromArray] Specify using the last element of `array` + * as the initial value. * @returns {*} Returns the accumulated value. */ function arrayReduceRight(array, iteratee, accumulator, initFromArray) { @@ -2052,8 +2052,8 @@ * @param {Array|Object|string} collection The collection to search. * @param {Function} predicate The function invoked per iteration. * @param {Function} eachFunc The function to iterate over `collection`. - * @param {boolean} [retKey] Specify returning the key of the found - * element instead of the element itself. + * @param {boolean} [retKey] Specify returning the key of the found element + * instead of the element itself. * @returns {*} Returns the found element or its key, else `undefined`. */ function baseFind(collection, predicate, eachFunc, retKey) {