Merge pull request #8540 from LPGhatguy/patch-1

Fix minor comment typo
This commit is contained in:
Daniel Rosenwasser 2016-05-09 22:24:10 -07:00
commit 16fccf5d38

View file

@ -1895,7 +1895,7 @@ namespace ts {
// add file to program only if: // add file to program only if:
// - resolution was successful // - resolution was successful
// - noResolve is falsy // - noResolve is falsy
// - module name come from the list fo imports // - module name comes from the list of imports
const shouldAddFile = resolution && const shouldAddFile = resolution &&
!options.noResolve && !options.noResolve &&
i < file.imports.length; i < file.imports.length;