From 2b8296b7ad091876406def4af250392adbc047f4 Mon Sep 17 00:00:00 2001 From: jjangga0214 Date: Thu, 15 Jul 2021 01:28:48 +0900 Subject: [PATCH] chore(typo): fix comment (#45016) --- 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 1eedb7e9334..87f3b5a70b6 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -15161,7 +15161,7 @@ namespace ts { let extraTypes: Type[] | undefined; // We loop here for an immediately nested conditional type in the false position, effectively treating // types of the form 'A extends B ? X : C extends D ? Y : E extends F ? Z : ...' as a single construct for - // purposes of resolution. This means such types aren't subject to the instatiation depth limiter. + // purposes of resolution. This means such types aren't subject to the instantiation depth limiter. while (true) { const isUnwrapped = isTypicalNondistributiveConditional(root); const checkType = instantiateType(unwrapNondistributiveConditionalTuple(root, getActualTypeVariable(root.checkType)), mapper);