Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix simple typo, homogenous -> homogeneous #35

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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._
Expand Down
4 changes: 2 additions & 2 deletions envision.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand Down
4 changes: 2 additions & 2 deletions js/Preprocessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand Down
4 changes: 2 additions & 2 deletions markdown/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -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._
Expand Down