There was an error while loading. Please reload this page.
1 parent 1f82c8e commit a04d012Copy full SHA for a04d012
code.js
@@ -1097,7 +1097,7 @@
1097
while (run_startColumn(runBase + 5 * nearbyRun) > column && nearbyRun > 0) nearbyRun--;
1098
while (run_endColumn(runBase + 5 * nearbyRun) < column && nearbyRun + 1 < runCount) nearbyRun++;
1099
let run = runBase + 5 * nearbyRun;
1100
- index = column === run_endColumn(run) ? run_endIndex(run) : run_endIndex(run) + column - run_startColumn(run);
+ index = column === run_endColumn(run) ? run_endIndex(run) : run_startIndex(run) + column - run_startColumn(run);
1101
}
1102
return index;
1103
0 commit comments