From 0c73af4de3d3ed9ea6d7f9429c4afd81c8c69e48 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 11 Apr 2020 08:29:00 +1000 Subject: [PATCH] docs: Fix simple typo, homogenous -> homogeneous There is a small typo in README.md, envision.js, js/Preprocessor.js, markdown/api.md. Should read `homogeneous` rather than `homogenous`. --- README.md | 4 ++-- envision.js | 4 ++-- js/Preprocessor.js | 4 ++-- markdown/api.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7030d43..1007f16 100644 --- a/README.md +++ b/README.md @@ -328,13 +328,13 @@ Subsample data using MinMax. MinMax will display the extrema of the subsample intervals. This is slower than regular interval subsampling but necessary for data that -is very non-homogenous. +is very non-homogeneous. ##### `subsample (resolution)` Subsample data at a regular interval for resolution. This is the fastest subsampling and good for monotonic data and fairly -homogenous data (not a lot of up and down). +homogeneous data (not a lot of up and down). ### Class `envision.Interaction` _Defines an interaction between components._ diff --git a/envision.js b/envision.js index d1ad840..5a94a8d 100644 --- a/envision.js +++ b/envision.js @@ -6495,7 +6495,7 @@ Preprocessor.prototype = { * * MinMax will display the extrema of the subsample intervals. This is * slower than regular interval subsampling but necessary for data that - * is very non-homogenous. + * is very non-homogeneous. * * @param {Number} resolution */ @@ -6585,7 +6585,7 @@ Preprocessor.prototype = { * Subsample data at a regular interval for resolution. * * This is the fastest subsampling and good for monotonic data and fairly - * homogenous data (not a lot of up and down). + * homogeneous data (not a lot of up and down). * * @param {Number} resolution */ diff --git a/js/Preprocessor.js b/js/Preprocessor.js index c45f5ce..32a3e99 100644 --- a/js/Preprocessor.js +++ b/js/Preprocessor.js @@ -135,7 +135,7 @@ Preprocessor.prototype = { * * MinMax will display the extrema of the subsample intervals. This is * slower than regular interval subsampling but necessary for data that - * is very non-homogenous. + * is very non-homogeneous. * * @param {Number} resolution */ @@ -225,7 +225,7 @@ Preprocessor.prototype = { * Subsample data at a regular interval for resolution. * * This is the fastest subsampling and good for monotonic data and fairly - * homogenous data (not a lot of up and down). + * homogeneous data (not a lot of up and down). * * @param {Number} resolution */ diff --git a/markdown/api.md b/markdown/api.md index ac42c26..37b8355 100644 --- a/markdown/api.md +++ b/markdown/api.md @@ -171,13 +171,13 @@ Subsample data using MinMax. MinMax will display the extrema of the subsample intervals. This is slower than regular interval subsampling but necessary for data that -is very non-homogenous. +is very non-homogeneous. ##### `subsample (resolution)` Subsample data at a regular interval for resolution. This is the fastest subsampling and good for monotonic data and fairly -homogenous data (not a lot of up and down). +homogeneous data (not a lot of up and down). ### Class `envision.Interaction` _Defines an interaction between components._