Skip to content

Commit

Permalink
docs: Fix simple typo, upated -> updated (c3js#2781)
Browse files Browse the repository at this point in the history
There is a small typo in c3.esm.js, c3.js, docs/js/c3.esm.js, docs/js/c3.js, src/legend.js.

Should read `updated` rather than `upated`.
  • Loading branch information
timgates42 authored Apr 12, 2020
1 parent 081091b commit 59ca163
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion c3.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -7954,7 +7954,7 @@ ChartInternal.prototype.initLegend = function () {
return;
}
// MEMO: call here to update legend box and tranlate for all
// MEMO: translate will be upated by this, so transform not needed in updateLegend()
// MEMO: translate will be updated by this, so transform not needed in updateLegend()
$$.updateLegendWithDefaults();
};
ChartInternal.prototype.updateLegendWithDefaults = function () {
Expand Down
2 changes: 1 addition & 1 deletion c3.js
Original file line number Diff line number Diff line change
Expand Up @@ -8952,7 +8952,7 @@
$$.hiddenLegendIds = $$.mapToIds($$.data.targets);
return;
} // MEMO: call here to update legend box and tranlate for all
// MEMO: translate will be upated by this, so transform not needed in updateLegend()
// MEMO: translate will be updated by this, so transform not needed in updateLegend()


$$.updateLegendWithDefaults();
Expand Down
2 changes: 1 addition & 1 deletion docs/js/c3.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -7954,7 +7954,7 @@ ChartInternal.prototype.initLegend = function () {
return;
}
// MEMO: call here to update legend box and tranlate for all
// MEMO: translate will be upated by this, so transform not needed in updateLegend()
// MEMO: translate will be updated by this, so transform not needed in updateLegend()
$$.updateLegendWithDefaults();
};
ChartInternal.prototype.updateLegendWithDefaults = function () {
Expand Down
2 changes: 1 addition & 1 deletion docs/js/c3.js
Original file line number Diff line number Diff line change
Expand Up @@ -8952,7 +8952,7 @@
$$.hiddenLegendIds = $$.mapToIds($$.data.targets);
return;
} // MEMO: call here to update legend box and tranlate for all
// MEMO: translate will be upated by this, so transform not needed in updateLegend()
// MEMO: translate will be updated by this, so transform not needed in updateLegend()


$$.updateLegendWithDefaults();
Expand Down
2 changes: 1 addition & 1 deletion src/legend.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ChartInternal.prototype.initLegend = function() {
return
}
// MEMO: call here to update legend box and tranlate for all
// MEMO: translate will be upated by this, so transform not needed in updateLegend()
// MEMO: translate will be updated by this, so transform not needed in updateLegend()
$$.updateLegendWithDefaults()
}
ChartInternal.prototype.updateLegendWithDefaults = function() {
Expand Down

0 comments on commit 59ca163

Please sign in to comment.