Skip to content

Commit

Permalink
Fix: Typo 'is less' -> 'are lesser' (#9755)
Browse files Browse the repository at this point in the history
* Fix: Typo 'is less' -> 'are lesser'

* Update plugin.decimation.js
  • Loading branch information
atharva01903 committed Oct 16, 2021
1 parent 12d5e4c commit 30e66bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/plugin.decimation.js
Expand Up @@ -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);
}
Expand Down

0 comments on commit 30e66bc

Please sign in to comment.