Update param docs for createExtremum. [ci skip]

This commit is contained in:
jdalton
2015-05-08 00:17:48 -07:00
parent 172eca6081
commit 542dd67892

View File

@@ -3451,9 +3451,8 @@
* Creates a `_.max` or `_.min` function. * Creates a `_.max` or `_.min` function.
* *
* @private * @private
* @param {Function} arrayFunc The function to get the extremum value from an array. * @param {Function} comparator The function used to compare values.
* @param {boolean} [isMin] Specify returning the minimum, instead of the maximum, * @param {*} exValue The initial extremum value.
* extremum value.
* @returns {Function} Returns the new extremum function. * @returns {Function} Returns the new extremum function.
*/ */
function createExtremum(comparator, exValue) { function createExtremum(comparator, exValue) {