Skip to content

Commit 73ce606

Browse files
committed
Fix jsdoc for every and some.
1 parent 8a51574 commit 73ce606

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

every.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* elements of empty arrays.
1010
*
1111
* @since 5.0.0
12-
* @category array
12+
* @category Array
1313
* @param {Array} array The array to iterate over.
1414
* @param {Function} predicate The function invoked per iteration.
1515
* @returns {boolean} Returns `true` if all elements pass the predicate check,

everyValue.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* elements of empty objects.
1010
*
1111
* @since 5.0.0
12-
* @category object
12+
* @category Object
1313
* @param {Object} object The object to iterate over.
1414
* @param {Function} predicate The function invoked per iteration.
1515
* @returns {boolean} Returns `true` if all properties pass the predicate check,

some.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
* invoked with three arguments: (value, index, array).
55
*
66
* @since 5.0.0
7-
* @category array
8-
* @param {Array|Object} array The array to iterate over.
7+
* @category Array
8+
* @param {Array} array The array to iterate over.
99
* @param {Function} predicate The function invoked per iteration.
1010
* @returns {boolean} Returns `true` if any element passes the predicate check,
1111
* else `false`.

0 commit comments

Comments
 (0)