Skip to content

Commit 86894f3

Browse files
committed
i++
1 parent a200aa9 commit 86894f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/harness/fourslash.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1774,7 +1774,7 @@ namespace FourSlash {
17741774
// of the incremental offset from each edit to the next. We assume these edit ranges don't overlap
17751775

17761776
edits = edits.sort((a, b) => a.span.start - b.span.start);
1777-
for (let i = 0; i < edits.length - 1; ++i) {
1777+
for (let i = 0; i < edits.length - 1; i++) {
17781778
const firstEditSpan = edits[i].span;
17791779
const firstEditEnd = firstEditSpan.start + firstEditSpan.length;
17801780
assert.isTrue(firstEditEnd <= edits[i + 1].span.start);

0 commit comments

Comments
 (0)