Skip to content

Commit 39d93be

Browse files
authored
Remove Arguments from jsdoc (#24583)
Looks like this was originally added in #10525. Perhaps closure compiler used to have a distinct type for `arguments` builtin in JS? I can't see any mention of it in closure compiler documentation today though. Fixes: #24579
1 parent 542dc42 commit 39d93be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/libccall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ addToLibrary({
2424
/**
2525
* @param {string|null=} returnType
2626
* @param {Array=} argTypes
27-
* @param {Arguments|Array=} args
27+
* @param {Array=} args
2828
* @param {Object=} opts
2929
*/`,
3030
$ccall: (ident, returnType, argTypes, args, opts) => {

0 commit comments

Comments
 (0)