diff --git a/dist/lodash.js b/dist/lodash.js index 900cedf3d..0d7cb1ec1 100644 --- a/dist/lodash.js +++ b/dist/lodash.js @@ -2300,7 +2300,7 @@ * @name has * @memberOf SetCache * @param {*} value The value to search for. - * @returns {number} Returns `true` if `value` is found, else `false`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. */ function setCacheHas(value) { return this.__data__.has(value); diff --git a/lodash.js b/lodash.js index 44a14053d..0b60a509b 100644 --- a/lodash.js +++ b/lodash.js @@ -2300,7 +2300,7 @@ * @name has * @memberOf SetCache * @param {*} value The value to search for. - * @returns {number} Returns `true` if `value` is found, else `false`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. */ function setCacheHas(value) { return this.__data__.has(value);