From 8d230fc428f9335ef74e7c1cd70d67ef47487499 Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Fri, 4 May 2018 15:50:14 -0700 Subject: [PATCH] Fix typo in comment --- src/compiler/program.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/program.ts b/src/compiler/program.ts index 8fba4480c55..d9e0741d5e0 100644 --- a/src/compiler/program.ts +++ b/src/compiler/program.ts @@ -965,7 +965,7 @@ namespace ts { // The `newSourceFile` object was created for the new program. if (!arrayIsEqualTo(oldSourceFile.libReferenceDirectives, newSourceFile.libReferenceDirectives, fileReferenceIsEqualTo)) { - // 'lib' references has changed. Matches behavior in chagnesAffectModuleResolution + // 'lib' references has changed. Matches behavior in changesAffectModuleResolution return oldProgram.structureIsReused = StructureIsReused.Not; }