Minor doc tweaks to _.pluck and _.match. [ci skip]

This commit is contained in:
John-David Dalton
2013-12-23 11:06:54 -06:00
parent 990e73fce6
commit c737ab764e

View File

@@ -4074,7 +4074,7 @@
* @type Function * @type Function
* @category Collections * @category Collections
* @param {Array|Object|string} collection The collection to iterate over. * @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. * @returns {Array} Returns a new array of property values.
* @example * @example
* *
@@ -6267,8 +6267,9 @@
} }
/** /**
* Creates a "_.where" style function, which returns `true` for a given object * Creates a "_.where" style function, which performs a deep comparison
* if it has the equivalent property values of the `props` object, else `false`. * between a given object and the `props` object, returning `true` if the
* given object has equivalent property values, else `false`.
* *
* @static * @static
* @memberOf _ * @memberOf _