From 0093b0fca8499074b1bdf6e30cf4e7de4f5649ce Mon Sep 17 00:00:00 2001 From: nikethan rai <58390625+nikethanrai@users.noreply.github.com> Date: Sun, 3 Oct 2021 19:09:20 +0530 Subject: [PATCH] Fix: Typo spaning--> spanning (#9710) --- src/helpers/helpers.segment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/helpers.segment.js b/src/helpers/helpers.segment.js index 8106c0629..3524558e7 100644 --- a/src/helpers/helpers.segment.js +++ b/src/helpers/helpers.segment.js @@ -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++; } -- 2.47.2