From 968ef1560f18a7f098ee27d4dfedd96000f53a9c Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Fri, 11 Jul 2014 11:29:48 +0800 Subject: [PATCH] Fix typos [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 16b98fe44..879f82002 100644 --- a/lodash.js +++ b/lodash.js @@ -1196,7 +1196,7 @@ * @param {Array} array The array to iterate over. * @param {Function} iterator The function called per iteration. * @param {*} [accumulator] The initial value. - * @param {boolean} [initFromArray=false] Specify using the first element of + * @param {boolean} [initFromArray=false] Specify using the last element of * `array` as the initial value. * @returns {*} Returns the accumulated value. */ @@ -2309,7 +2309,7 @@ * @param {Array|Object|string} collection The collection to iterate over. * @param {Function} iterator The function called per iteration. * @param {*} accumulator The initial value. - * @param {boolean} initFromCollection Specify using the first element + * @param {boolean} initFromCollection Specify using the first or last element * of `collection` as the initial value. * @param {Function} eachFunc The function to iterate over `collection`. * @returns {*} Returns the accumulated value.