Remove redundant param descriptions. [ci skip]

This commit is contained in:
John-David Dalton
2016-04-08 15:04:07 -07:00
parent 6512b7f925
commit 51ad056710

View File

@@ -6764,8 +6764,7 @@
* @since 3.0.0 * @since 3.0.0
* @category Array * @category Array
* @param {Array} array The array to modify. * @param {Array} array The array to modify.
* @param {...(number|number[])} [indexes] The indexes of elements to remove, * @param {...(number|number[])} [indexes] The indexes of elements to remove.
* specified individually or in arrays.
* @returns {Array} Returns the new array of removed elements. * @returns {Array} Returns the new array of removed elements.
* @example * @example
* *
@@ -7773,8 +7772,7 @@
* @memberOf _ * @memberOf _
* @since 1.0.0 * @since 1.0.0
* @category Seq * @category Seq
* @param {...(string|string[])} [paths] The property paths of elements to pick, * @param {...(string|string[])} [paths] The property paths of elements to pick.
* specified individually or in arrays.
* @returns {Object} Returns the new `lodash` wrapper instance. * @returns {Object} Returns the new `lodash` wrapper instance.
* @example * @example
* *
@@ -8916,8 +8914,7 @@
* @category Collection * @category Collection
* @param {Array|Object} collection The collection to iterate over. * @param {Array|Object} collection The collection to iterate over.
* @param {...(Array|Array[]|Function|Function[]|Object|Object[]|string|string[])} * @param {...(Array|Array[]|Function|Function[]|Object|Object[]|string|string[])}
* [iteratees=[_.identity]] The iteratees to sort by, specified individually * [iteratees=[_.identity]] The iteratees to sort by.
* or in arrays.
* @returns {Array} Returns the new sorted array. * @returns {Array} Returns the new sorted array.
* @example * @example
* *
@@ -9743,8 +9740,7 @@
* @since 3.0.0 * @since 3.0.0
* @category Function * @category Function
* @param {Function} func The function to rearrange arguments for. * @param {Function} func The function to rearrange arguments for.
* @param {...(number|number[])} indexes The arranged argument indexes, * @param {...(number|number[])} indexes The arranged argument indexes.
* specified individually or in arrays.
* @returns {Function} Returns the new function. * @returns {Function} Returns the new function.
* @example * @example
* *
@@ -11693,8 +11689,7 @@
* @since 1.0.0 * @since 1.0.0
* @category Object * @category Object
* @param {Object} object The object to iterate over. * @param {Object} object The object to iterate over.
* @param {...(string|string[])} [paths] The property paths of elements to pick, * @param {...(string|string[])} [paths] The property paths of elements to pick.
* specified individually or in arrays.
* @returns {Array} Returns the new array of picked elements. * @returns {Array} Returns the new array of picked elements.
* @example * @example
* *
@@ -12469,8 +12464,7 @@
* @memberOf _ * @memberOf _
* @category Object * @category Object
* @param {Object} object The source object. * @param {Object} object The source object.
* @param {...(string|string[])} [props] The property identifiers to omit, * @param {...(string|string[])} [props] The property identifiers to omit.
* specified individually or in arrays.
* @returns {Object} Returns the new object. * @returns {Object} Returns the new object.
* @example * @example
* *
@@ -12523,8 +12517,7 @@
* @memberOf _ * @memberOf _
* @category Object * @category Object
* @param {Object} object The source object. * @param {Object} object The source object.
* @param {...(string|string[])} [props] The property identifiers to pick, * @param {...(string|string[])} [props] The property identifiers to pick.
* specified individually or in arrays.
* @returns {Object} Returns the new object. * @returns {Object} Returns the new object.
* @example * @example
* *
@@ -14242,8 +14235,7 @@
* @memberOf _ * @memberOf _
* @category Util * @category Util
* @param {Object} object The object to bind and assign the bound methods to. * @param {Object} object The object to bind and assign the bound methods to.
* @param {...(string|string[])} methodNames The object method names to bind, * @param {...(string|string[])} methodNames The object method names to bind.
* specified individually or in arrays.
* @returns {Object} Returns `object`. * @returns {Object} Returns `object`.
* @example * @example
* *