Update @category docs.

Former-commit-id: edf8964b2061c80d8c868ea71b8c05a29cee4e28
This commit is contained in:
John-David Dalton
2012-10-29 22:01:34 -07:00
parent 2ad6faae3a
commit 08b1261c75

View File

@@ -2087,7 +2087,7 @@
* @static
* @memberOf _
* @category Collections
* @param {Array} collection The collection to iterate over.
* @param {Array|Object|String} collection The collection to iterate over.
* @param {Function} [callback] The function called per iteration.
* @param {Mixed} [thisArg] The `this` binding of `callback`.
* @returns {Mixed} Returns the maximum value.
@@ -2136,7 +2136,7 @@
* @static
* @memberOf _
* @category Collections
* @param {Array} collection The collection to iterate over.
* @param {Array|Object|String} collection The collection to iterate over.
* @param {Function} [callback] The function called per iteration.
* @param {Mixed} [thisArg] The `this` binding of `callback`.
* @returns {Mixed} Returns the minimum value.
@@ -2299,7 +2299,7 @@
* @static
* @memberOf _
* @category Collections
* @param {Array} collection The collection to shuffle.
* @param {Array|Object|String} collection The collection to shuffle.
* @returns {Array} Returns a new shuffled collection.
* @example
*