From 71e4d4504f30b5d57390179e6d46c3c63e2bfb02 Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Mon, 9 May 2016 23:05:57 -0600 Subject: [PATCH] Fix minor comment typo --- 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 b1322305f6..a6e05cd60f 100644 --- a/src/compiler/program.ts +++ b/src/compiler/program.ts @@ -1895,7 +1895,7 @@ namespace ts { // add file to program only if: // - resolution was successful // - noResolve is falsy - // - module name come from the list fo imports + // - module name comes from the list of imports const shouldAddFile = resolution && !options.noResolve && i < file.imports.length;