From 083e401717e482c0732cb0ffe46d08cca1ed8938 Mon Sep 17 00:00:00 2001 From: jdalton Date: Tue, 3 Feb 2015 19:59:39 -0800 Subject: [PATCH] Fix param doc typos in `baseIsMatch`, `_.chunk`, & `_.isMatch`. [ci skip] [closes #923] --- lodash.src.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 2f55e9354..91b96c603 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -2360,7 +2360,7 @@ * shorthands or `this` binding. * * @private - * @param {Object} source The object to inspect. + * @param {Object} object The object to inspect. * @param {Array} props The source property names to match. * @param {Array} values The source values to match. * @param {Array} strictCompareFlags Strict comparison flags for source values. @@ -4089,7 +4089,7 @@ * @memberOf _ * @category Array * @param {Array} array The array to process. - * @param {numer} [size=1] The length of each chunk. + * @param {number} [size=1] The length of each chunk. * @param- {Object} [guard] Enables use as a callback for functions like `_.map`. * @returns {Array} Returns the new array containing chunks. * @example @@ -8025,7 +8025,7 @@ * @static * @memberOf _ * @category Lang - * @param {Object} source The object to inspect. + * @param {Object} object The object to inspect. * @param {Object} source The object of property values to match. * @param {Function} [customizer] The function to customize comparing values. * @param {*} [thisArg] The `this` binding of `customizer`.