From bc651e886d5c5053d4433100b67557869e7035cb Mon Sep 17 00:00:00 2001 From: Anderson Aguiar Date: Tue, 22 Sep 2015 22:06:00 -0300 Subject: [PATCH] Fix typo in comment --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 20680d31e..2dfbb4890 100644 --- a/lodash.js +++ b/lodash.js @@ -2371,7 +2371,7 @@ * @private * @param {Object} object The object to inspect. * @param {Object} source The object of property values to match. - * @param {Array} matchData The propery names, values, and compare flags to match. + * @param {Array} matchData The property names, values, and compare flags to match. * @param {Function} [customizer] The function to customize comparisons. * @returns {boolean} Returns `true` if `object` is a match, else `false`. */ @@ -4027,7 +4027,7 @@ var getLength = baseProperty('length'); /** - * Gets the propery names, values, and compare flags of `object`. + * Gets the property names, values, and compare flags of `object`. * * @private * @param {Object} object The object to query.