From 73ce6066f8a33d5fcfffd7c6d515c5c6c3d2405e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 15 Apr 2017 23:08:35 -0500 Subject: [PATCH] Fix jsdoc for `every` and `some`. --- every.js | 2 +- everyValue.js | 2 +- some.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/every.js b/every.js index 79c329e32..045cde669 100644 --- a/every.js +++ b/every.js @@ -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, diff --git a/everyValue.js b/everyValue.js index 56e2d2614..5799e91c2 100644 --- a/everyValue.js +++ b/everyValue.js @@ -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, diff --git a/some.js b/some.js index 25201f023..6f8eebcad 100644 --- a/some.js +++ b/some.js @@ -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`.