From 45953b2ac167492907fd73e5efa4e4e2b886ed92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20Segersva=CC=88rd?= Date: Thu, 31 Mar 2016 18:12:50 +0200 Subject: [PATCH] Set the jsdoc type of `apply`'s `args` parameter to `Array`. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 2e4585413..d70f8bedf 100644 --- a/lodash.js +++ b/lodash.js @@ -409,7 +409,7 @@ * @private * @param {Function} func The function to invoke. * @param {*} thisArg The `this` binding of `func`. - * @param {...*} args The arguments to invoke `func` with. + * @param {Array} args The arguments to invoke `func` with. * @returns {*} Returns the result of `func`. */ function apply(func, thisArg, args) {