From: nikethan rai <58390625+nikethanrai@users.noreply.github.com> Date: Sun, 3 Oct 2021 13:39:20 +0000 (+0530) Subject: Fix: Typo spaning--> spanning (#9710) X-Git-Tag: v3.6.0~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0093b0fca8499074b1bdf6e30cf4e7de4f5649ce;p=thirdparty%2FChart.js.git Fix: Typo spaning--> spanning (#9710) --- 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++; }