From a46844aab6d48304842feccebf36c8ec05692475 Mon Sep 17 00:00:00 2001 From: John Doe Date: Thu, 28 Jun 2018 19:02:43 -0700 Subject: [PATCH] arugments -> arguments --- src/compiler/checker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index dfb10780fcb..dc3c1a2b2e1 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -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]); }