From: nakanoh Date: Tue, 10 Jun 2025 10:17:06 +0000 (+0900) Subject: fix: correct grammar in segment comments (#12084) X-Git-Tag: v4.5.0~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14d66be764d422e6c6711bc2479f25646c70a8e0;p=thirdparty%2FChart.js.git fix: correct grammar in segment comments (#12084) --- diff --git a/src/plugins/plugin.filler/filler.target.stack.js b/src/plugins/plugin.filler/filler.target.stack.js index 006c5737f..8c6d0532c 100644 --- a/src/plugins/plugin.filler/filler.target.stack.js +++ b/src/plugins/plugin.filler/filler.target.stack.js @@ -65,13 +65,12 @@ function addPointsBelow(points, sourcePoint, linesBelow) { continue; } if (first) { - // First point of an segment -> need to add another point before this, - // from next line below. + // First point of a segment -> need to add another point before this, postponed.unshift(point); } else { points.push(point); if (!last) { - // In the middle of an segment, no need to add more points. + // In the middle of a segment, no need to add more points. break; } }