Skip to content

Commit bf8937c

Browse files
committed
remove extra semicolon
1 parent af0c548 commit bf8937c

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
@@ -140,7 +140,7 @@ namespace ts {
140140
const { line: firstLine, character: firstLineChar } = getLineAndCharacterOfPosition(file, start);
141141
const { line: lastLine, character: lastLineChar } = getLineAndCharacterOfPosition(file, start + length);
142142
const lastLineInFile = getLineAndCharacterOfPosition(file, file.text.length).line;
143-
const relativeFileName = host ? convertToRelativePath(file.fileName, host.getCurrentDirectory(), fileName => host.getCanonicalFileName(fileName)) : file.fileName;;
143+
const relativeFileName = host ? convertToRelativePath(file.fileName, host.getCurrentDirectory(), fileName => host.getCanonicalFileName(fileName)) : file.fileName;
144144

145145
const hasMoreThanFiveLines = (lastLine - firstLine) >= 4;
146146
let gutterWidth = (lastLine + 1 + "").length;

0 commit comments

Comments
 (0)