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, violing -> violin #2220

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
54 changes: 27 additions & 27 deletions build/nv.d3.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,31 +154,31 @@ if (typeof(module) !== 'undefined' && typeof(exports) !== 'undefined') {
if (typeof(window) !== 'undefined') {
window.nv = nv;
}
/* Facade for queueing DOM write operations
* with Fastdom (https://github.com/wilsonpage/fastdom)
* if available.
* This could easily be extended to support alternate
* implementations in the future.
*/
nv.dom.write = function(callback) {
if (window.fastdom !== undefined) {
return fastdom.mutate(callback);
}
return callback();
};
/* Facade for queueing DOM read operations
* with Fastdom (https://github.com/wilsonpage/fastdom)
* if available.
* This could easily be extended to support alternate
* implementations in the future.
*/
nv.dom.read = function(callback) {
if (window.fastdom !== undefined) {
return fastdom.measure(callback);
}
return callback();
};
/* Facade for queueing DOM write operations
* with Fastdom (https://github.com/wilsonpage/fastdom)
* if available.
* This could easily be extended to support alternate
* implementations in the future.
*/
nv.dom.write = function(callback) {
if (window.fastdom !== undefined) {
return fastdom.mutate(callback);
}
return callback();
};

/* Facade for queueing DOM read operations
* with Fastdom (https://github.com/wilsonpage/fastdom)
* if available.
* This could easily be extended to support alternate
* implementations in the future.
*/
nv.dom.read = function(callback) {
if (window.fastdom !== undefined) {
return fastdom.measure(callback);
}
return callback();
};
/* Utility class to handle creation of an interactive layer.
This places a rectangle on top of the chart. When you mouse move over it, it sends a dispatch
containing the X-coordinate. It can also render a vertical line where the mouse is located.
Expand Down Expand Up @@ -5019,7 +5019,7 @@ nv.models.distroPlot = function() {
* of the violin.
*
* @param (list) kde - x & y kde cooridinates
* @param (list) extent - min/max y-values used for clamping violing
* @param (list) extent - min/max y-values used for clamping violin
*/
function clampViolinKDE(kde, extent) {

Expand Down Expand Up @@ -18123,4 +18123,4 @@ nv.models.sunburstChart = function() {

nv.version = "1.8.6-dev";
})();
//# sourceMappingURL=nv.d3.js.map
//# sourceMappingURL=nv.d3.js.map
2 changes: 1 addition & 1 deletion src/models/distroPlot.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ nv.models.distroPlot = function() {
* of the violin.
*
* @param (list) kde - x & y kde cooridinates
* @param (list) extent - min/max y-values used for clamping violing
* @param (list) extent - min/max y-values used for clamping violin
*/
function clampViolinKDE(kde, extent) {

Expand Down