arugments -> arguments

This commit is contained in:
John Doe 2018-06-28 19:02:43 -07:00
parent b7b66a28ee
commit a46844aab6

View File

@ -19474,7 +19474,7 @@ namespace ts {
}
const specifier = node.arguments[0];
const specifierType = checkExpressionCached(specifier);
// Even though multiple arugments is grammatically incorrect, type-check extra arguments for completion
// Even though multiple arguments is grammatically incorrect, type-check extra arguments for completion
for (let i = 1; i < node.arguments.length; ++i) {
checkExpressionCached(node.arguments[i]);
}