From de5313269211c61c8ddd413b72e70b5fe2beb1cb Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 28 Mar 2016 07:05:08 -0700 Subject: [PATCH] Add `args` param doc for `_.attempt`. [closes #2164] [ci skip] --- lodash.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lodash.js b/lodash.js index 2aa513389..a35622d2a 100644 --- a/lodash.js +++ b/lodash.js @@ -14118,6 +14118,7 @@ * @since 3.0.0 * @category Util * @param {Function} func The function to attempt. + * @param {...*} [args] The arguments to invoke `func` with. * @returns {*} Returns the `func` result or error object. * @example *