From: Atharva Deshpande Date: Sat, 16 Oct 2021 19:41:27 +0000 (+0530) Subject: Fix: Typo 'is less' -> 'are lesser' (#9755) X-Git-Tag: v3.6.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30e66bc50e1c09cfa47c85415dc96c4707d8630f;p=thirdparty%2FChart.js.git Fix: Typo 'is less' -> 'are lesser' (#9755) * Fix: Typo 'is less' -> 'are lesser' * Update plugin.decimation.js --- diff --git a/src/plugins/plugin.decimation.js b/src/plugins/plugin.decimation.js index 1deb0efd2..20fbb44b9 100644 --- a/src/plugins/plugin.decimation.js +++ b/src/plugins/plugin.decimation.js @@ -10,7 +10,7 @@ function lttbDecimation(data, start, count, availableWidth, options) { * The original implementation is MIT licensed. */ const samples = options.samples || availableWidth; - // There is less points than the threshold, returning the whole array + // There are less points than the threshold, returning the whole array if (samples >= count) { return data.slice(start, start + count); }