Fix jsdoc for every and some.

This commit is contained in:
John-David Dalton
2017-04-15 23:08:35 -05:00
parent 8a51574acf
commit 73ce6066f8
3 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@
* elements of empty arrays.
*
* @since 5.0.0
* @category array
* @category Array
* @param {Array} array The array to iterate over.
* @param {Function} predicate The function invoked per iteration.
* @returns {boolean} Returns `true` if all elements pass the predicate check,

View File

@@ -9,7 +9,7 @@
* elements of empty objects.
*
* @since 5.0.0
* @category object
* @category Object
* @param {Object} object The object to iterate over.
* @param {Function} predicate The function invoked per iteration.
* @returns {boolean} Returns `true` if all properties pass the predicate check,

View File

@@ -4,8 +4,8 @@
* invoked with three arguments: (value, index, array).
*
* @since 5.0.0
* @category array
* @param {Array|Object} array The array to iterate over.
* @category Array
* @param {Array} array The array to iterate over.
* @param {Function} predicate The function invoked per iteration.
* @returns {boolean} Returns `true` if any element passes the predicate check,
* else `false`.