Fix: Typo spaning--> spanning (#9710)

This commit is contained in:
nikethan rai
2021-10-03 19:09:20 +05:30
committed by GitHub
parent f0f645de5f
commit 0093b0fca8

View File

@@ -157,7 +157,7 @@ function findStartAndEnd(points, count, loop, spanGaps) {
let end = count - 1;
if (loop && !spanGaps) {
// loop and not spaning gaps, first find a gap to start from
// loop and not spanning gaps, first find a gap to start from
while (start < count && !points[start].skip) {
start++;
}