Skip to content

Commit a46844a

Browse files
arugments -> arguments
1 parent b7b66a2 commit a46844a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19474,7 +19474,7 @@ namespace ts {
1947419474
}
1947519475
const specifier = node.arguments[0];
1947619476
const specifierType = checkExpressionCached(specifier);
19477-
// Even though multiple arugments is grammatically incorrect, type-check extra arguments for completion
19477+
// Even though multiple arguments is grammatically incorrect, type-check extra arguments for completion
1947819478
for (let i = 1; i < node.arguments.length; ++i) {
1947919479
checkExpressionCached(node.arguments[i]);
1948019480
}

0 commit comments

Comments
 (0)