From 593f6f9f863bcb350e0754192afc5ced765087af Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 28 May 2016 10:16:21 -0700 Subject: [PATCH] Correct doc block for `overArg` helper in `_baseConvert`. [ci skip] --- fp/_baseConvert.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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) {