Skip to content

Commit 53308fe

Browse files
committed
Fix semicolon
1 parent 7076e3c commit 53308fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/harness/fourslash.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ module FourSlash {
11641164
}
11651165
};
11661166

1167-
for (pos < this.activeFile.content.length; pos++) {
1167+
for (; pos < this.activeFile.content.length; pos++) {
11681168
if (pos === 0 || pos === fileLineMap[nextLine]) {
11691169
nextLine++;
11701170
addSpanInfoString();

0 commit comments

Comments
 (0)