Fix minor comment typo

This commit is contained in:
Lucien Greathouse 2016-05-09 23:05:57 -06:00
parent 747924a3c5
commit 71e4d4504f

View file

@ -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;