From c737ab764ee296f5ef05e2ce1c2dbe2a40ce0c1c Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 23 Dec 2013 11:06:54 -0600 Subject: [PATCH] Minor doc tweaks to `_.pluck` and `_.match`. [ci skip] --- lodash.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 16dc52651..f51586308 100644 --- a/lodash.js +++ b/lodash.js @@ -4074,7 +4074,7 @@ * @type Function * @category Collections * @param {Array|Object|string} collection The collection to iterate over. - * @param {string} property The name of the property to pluck. + * @param {string} prop The name of the property to pluck. * @returns {Array} Returns a new array of property values. * @example * @@ -6267,8 +6267,9 @@ } /** - * Creates a "_.where" style function, which returns `true` for a given object - * if it has the equivalent property values of the `props` object, else `false`. + * Creates a "_.where" style function, which performs a deep comparison + * between a given object and the `props` object, returning `true` if the + * given object has equivalent property values, else `false`. * * @static * @memberOf _