mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-02-20 01:31:20 +01:00
fix: correct grammar in segment comments (#12084)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user