Use and consistently. [ci skip]

This commit is contained in:
jdalton
2015-03-17 08:44:51 -07:00
parent 4c1819c7dd
commit 2f52730b48

View File

@@ -1482,7 +1482,7 @@
/** /**
* A specialized version of `_.forEach` for arrays without support for callback * A specialized version of `_.forEach` for arrays without support for callback
* shorthands or `this` binding. * shorthands and `this` binding.
* *
* @private * @private
* @param {Array} array The array to iterate over. * @param {Array} array The array to iterate over.
@@ -1503,7 +1503,7 @@
/** /**
* A specialized version of `_.forEachRight` for arrays without support for * A specialized version of `_.forEachRight` for arrays without support for
* callback shorthands or `this` binding. * callback shorthands and `this` binding.
* *
* @private * @private
* @param {Array} array The array to iterate over. * @param {Array} array The array to iterate over.
@@ -1523,7 +1523,7 @@
/** /**
* A specialized version of `_.every` for arrays without support for callback * A specialized version of `_.every` for arrays without support for callback
* shorthands or `this` binding. * shorthands and `this` binding.
* *
* @private * @private
* @param {Array} array The array to iterate over. * @param {Array} array The array to iterate over.
@@ -1545,7 +1545,7 @@
/** /**
* A specialized version of `_.filter` for arrays without support for callback * A specialized version of `_.filter` for arrays without support for callback
* shorthands or `this` binding. * shorthands and `this` binding.
* *
* @private * @private
* @param {Array} array The array to iterate over. * @param {Array} array The array to iterate over.
@@ -1569,7 +1569,7 @@
/** /**
* A specialized version of `_.map` for arrays without support for callback * A specialized version of `_.map` for arrays without support for callback
* shorthands or `this` binding. * shorthands and `this` binding.
* *
* @private * @private
* @param {Array} array The array to iterate over. * @param {Array} array The array to iterate over.
@@ -1631,7 +1631,7 @@
/** /**
* A specialized version of `_.reduce` for arrays without support for callback * A specialized version of `_.reduce` for arrays without support for callback
* shorthands or `this` binding. * shorthands and `this` binding.
* *
* @private * @private
* @param {Array} array The array to iterate over. * @param {Array} array The array to iterate over.
@@ -1656,7 +1656,7 @@
/** /**
* A specialized version of `_.reduceRight` for arrays without support for * A specialized version of `_.reduceRight` for arrays without support for
* callback shorthands or `this` binding. * callback shorthands and `this` binding.
* *
* @private * @private
* @param {Array} array The array to iterate over. * @param {Array} array The array to iterate over.
@@ -1679,7 +1679,7 @@
/** /**
* A specialized version of `_.some` for arrays without support for callback * A specialized version of `_.some` for arrays without support for callback
* shorthands or `this` binding. * shorthands and `this` binding.
* *
* @private * @private
* @param {Array} array The array to iterate over. * @param {Array} array The array to iterate over.
@@ -2055,7 +2055,7 @@
/** /**
* The base implementation of `_.every` without support for callback * The base implementation of `_.every` without support for callback
* shorthands or `this` binding. * shorthands and `this` binding.
* *
* @private * @private
* @param {Array|Object|string} collection The collection to iterate over. * @param {Array|Object|string} collection The collection to iterate over.
@@ -2104,7 +2104,7 @@
/** /**
* The base implementation of `_.filter` without support for callback * The base implementation of `_.filter` without support for callback
* shorthands or `this` binding. * shorthands and `this` binding.
* *
* @private * @private
* @param {Array|Object|string} collection The collection to iterate over. * @param {Array|Object|string} collection The collection to iterate over.
@@ -2381,7 +2381,7 @@
/** /**
* The base implementation of `_.isMatch` without support for callback * The base implementation of `_.isMatch` without support for callback
* shorthands or `this` binding. * shorthands and `this` binding.
* *
* @private * @private
* @param {Object} object The object to inspect. * @param {Object} object The object to inspect.
@@ -2430,7 +2430,7 @@
/** /**
* The base implementation of `_.map` without support for callback shorthands * The base implementation of `_.map` without support for callback shorthands
* or `this` binding. * and `this` binding.
* *
* @private * @private
* @param {Array|Object|string} collection The collection to iterate over. * @param {Array|Object|string} collection The collection to iterate over.
@@ -2623,7 +2623,7 @@
/** /**
* The base implementation of `_.reduce` and `_.reduceRight` without support * The base implementation of `_.reduce` and `_.reduceRight` without support
* for callback shorthands or `this` binding, which iterates over `collection` * for callback shorthands and `this` binding, which iterates over `collection`
* using the provided `eachFunc`. * using the provided `eachFunc`.
* *
* @private * @private
@@ -2690,7 +2690,7 @@
/** /**
* The base implementation of `_.some` without support for callback shorthands * The base implementation of `_.some` without support for callback shorthands
* or `this` binding. * and `this` binding.
* *
* @private * @private
* @param {Array|Object|string} collection The collection to iterate over. * @param {Array|Object|string} collection The collection to iterate over.