From 01351d43e4bfc6474e04534d3a467dfbc75e4b6c Mon Sep 17 00:00:00 2001 From: Alex Ryan Date: Tue, 8 May 2018 14:36:32 -0700 Subject: [PATCH] Fix comment typo in program.ts --- 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 d353aa6dae..365e948f74 100644 --- a/src/compiler/program.ts +++ b/src/compiler/program.ts @@ -783,7 +783,7 @@ namespace ts { // We only set `file.resolvedModules` via work from the current function, // so it is defined iff we already called the current function on `file`. // That call happened no later than the creation of the `file` object, - // which per above occured during the current program creation. + // which per above occurred during the current program creation. // Since we assume the filesystem does not change during program creation, // it is safe to reuse resolutions from the earlier call. const result: ResolvedModuleFull[] = [];