Correct doc block for overArg helper in _baseConvert. [ci skip]

This commit is contained in:
John-David Dalton
2016-05-28 10:16:21 -07:00
parent fbdda6df03
commit 593f6f9f86

View File

@@ -310,12 +310,11 @@ function baseConvert(util, name, func, options) {
} }
/** /**
* Creates a function that invokes `func` with its first argument passed * Creates a function that invokes `func` with its first argument transformed.
* thru `transform`.
* *
* @private * @private
* @param {Function} func The function to wrap. * @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. * @returns {Function} Returns the new function.
*/ */
function overArg(func, transform) { function overArg(func, transform) {