From 08b1261c75abbe65b237b1fe3a017c591afaf361 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 29 Oct 2012 22:01:34 -0700 Subject: [PATCH] Update `@category` docs. Former-commit-id: edf8964b2061c80d8c868ea71b8c05a29cee4e28 --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 3ee6e00a7..a368ce7d6 100644 --- a/lodash.js +++ b/lodash.js @@ -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 *