Skip to content

Commit cc95dca

Browse files
committed
Fix lint error that was commited
This is what happens when your merge PRs by hand and forget to run the linter. You break everyone's PRs.
1 parent 2d78df4 commit cc95dca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/tsc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ namespace ts {
301301
sourceFile.fileWatcher.close();
302302
sourceFile.fileWatcher = undefined;
303303
if (removed) {
304-
var index = rootFileNames.indexOf(sourceFile.fileName);
304+
let index = rootFileNames.indexOf(sourceFile.fileName);
305305
if (index >= 0) {
306306
rootFileNames.splice(index, 1);
307307
}

0 commit comments

Comments
 (0)