Set the jsdoc type of apply's args parameter to Array. [ci skip]

This commit is contained in:
Oskar Segersvärd
2016-03-31 18:12:50 +02:00
committed by John-David Dalton
parent d9f93d0895
commit 45953b2ac1

View File

@@ -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) {