Skip to content

Commit 3425614

Browse files
committed
Fix lint
1 parent 1930f8a commit 3425614

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/harness/fourslash.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2043,7 +2043,8 @@ Actual: ${stringify(fullActual)}`);
20432043
private goToMarkerOrRange(markerOrRange: string | Range) {
20442044
if (typeof markerOrRange === "string") {
20452045
this.goToMarker(markerOrRange);
2046-
} else {
2046+
}
2047+
else {
20472048
this.goToRangeStart(markerOrRange);
20482049
}
20492050
}

0 commit comments

Comments
 (0)