]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix: Typo spaning--> spanning (#9710)
authornikethan rai <58390625+nikethanrai@users.noreply.github.com>
Sun, 3 Oct 2021 13:39:20 +0000 (19:09 +0530)
committerGitHub <noreply@github.com>
Sun, 3 Oct 2021 13:39:20 +0000 (09:39 -0400)
src/helpers/helpers.segment.js

index 8106c0629ebe367363ba64ae85efc1c1fbaf0401..3524558e7b9b33707233297f8e9c7aa564b82d30 100644 (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++;
     }