From 30e66bc50e1c09cfa47c85415dc96c4707d8630f Mon Sep 17 00:00:00 2001 From: Atharva Deshpande Date: Sun, 17 Oct 2021 01:11:27 +0530 Subject: [PATCH] Fix: Typo 'is less' -> 'are lesser' (#9755) * Fix: Typo 'is less' -> 'are lesser' * Update plugin.decimation.js --- src/plugins/plugin.decimation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/plugin.decimation.js b/src/plugins/plugin.decimation.js index 1deb0efd2e4..20fbb44b93a 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); }