Fix doc typo in arrayEvery and baseEvery. [ci skip]

This commit is contained in:
John-David Dalton
2015-01-05 14:08:36 -08:00
parent 79fec3ac40
commit 2f52dd88a9

View File

@@ -331,7 +331,7 @@
* @private
* @param {Array} array The array to iterate over.
* @param {Function} predicate The function invoked per iteration.
* @returns {Array} Returns `true` if all elements pass the predicate check,
* @returns {boolean} Returns `true` if all elements pass the predicate check,
* else `false`.
*/
function arrayEvery(array, predicate) {
@@ -1983,7 +1983,7 @@
* @private
* @param {Array|Object|string} collection The collection to iterate over.
* @param {Function} predicate The function invoked per iteration.
* @returns {Array} Returns `true` if all elements pass the predicate check,
* @returns {boolean} Returns `true` if all elements pass the predicate check,
* else `false`
*/
function baseEvery(collection, predicate) {