Minor _.sortBy doc nit. [ci skip]

This commit is contained in:
John-David Dalton
2014-06-09 00:17:25 -07:00
parent 8572445f57
commit 9a152c23bb

View File

@@ -5073,8 +5073,8 @@
* @category Collections
* @param {Array|Object|string} collection The collection to iterate over.
* @param {Array|Function|Object|string} [callback=identity] The function
* called per iteration. If a property name or object is provided it is
* used to create a "_.pluck" or "_.where" style callback respectively.
* called per iteration. If property name(s) or an object is provided it
* is used to create a "_.pluck" or "_.where" style callback respectively.
* @param {*} [thisArg] The `this` binding of `callback`.
* @returns {Array} Returns the new sorted array.
* @example