Skip to content

Commit 5484e75

Browse files
authored
Remove extra semicolon
1 parent 1546974 commit 5484e75

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compiler/tsc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ namespace ts {
130130
const { line: firstLine, character: firstLineChar } = getLineAndCharacterOfPosition(file, start);
131131
const { line: lastLine, character: lastLineChar } = getLineAndCharacterOfPosition(file, start + length);
132132
const lastLineInFile = getLineAndCharacterOfPosition(file, file.text.length).line;
133-
const relativeFileName = host ? convertToRelativePath(file.fileName, host.getCurrentDirectory(), fileName => host.getCanonicalFileName(fileName)) : file.fileName;;
133+
const relativeFileName = host ? convertToRelativePath(file.fileName, host.getCurrentDirectory(), fileName => host.getCanonicalFileName(fileName)) : file.fileName;
134134

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

0 commit comments

Comments
 (0)