diff --git a/fp/_baseConvert.js b/fp/_baseConvert.js index e177cdd03..2feeb530a 100644 --- a/fp/_baseConvert.js +++ b/fp/_baseConvert.js @@ -310,12 +310,11 @@ function baseConvert(util, name, func, options) { } /** - * Creates a function that invokes `func` with its first argument passed - * thru `transform`. + * Creates a function that invokes `func` with its first argument transformed. * * @private * @param {Function} func The function to wrap. - * @param {...Function} transform The functions to transform the first argument. + * @param {Function} transform The argument transform. * @returns {Function} Returns the new function. */ function overArg(func, transform) {