From 542dd67892fa04a133a1d0bd90fcf7a00a3cde2f Mon Sep 17 00:00:00 2001 From: jdalton Date: Fri, 8 May 2015 00:17:48 -0700 Subject: [PATCH] Update param docs for `createExtremum`. [ci skip] --- lodash.src.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 445b49862..4bec0ff10 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -3451,9 +3451,8 @@ * Creates a `_.max` or `_.min` function. * * @private - * @param {Function} arrayFunc The function to get the extremum value from an array. - * @param {boolean} [isMin] Specify returning the minimum, instead of the maximum, - * extremum value. + * @param {Function} comparator The function used to compare values. + * @param {*} exValue The initial extremum value. * @returns {Function} Returns the new extremum function. */ function createExtremum(comparator, exValue) {