Skip to content

Commit 30e66bc

Browse files
authored
Fix: Typo 'is less' -> 'are lesser' (chartjs#9755)
* Fix: Typo 'is less' -> 'are lesser' * Update plugin.decimation.js
1 parent 12d5e4c commit 30e66bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/plugin.decimation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function lttbDecimation(data, start, count, availableWidth, options) {
1010
* The original implementation is MIT licensed.
1111
*/
1212
const samples = options.samples || availableWidth;
13-
// There is less points than the threshold, returning the whole array
13+
// There are less points than the threshold, returning the whole array
1414
if (samples >= count) {
1515
return data.slice(start, start + count);
1616
}

0 commit comments

Comments
 (0)