diff --git a/src/component/legend/ScrollableLegendView.ts b/src/component/legend/ScrollableLegendView.ts index da19a699d1..239ec8b5f3 100644 --- a/src/component/legend/ScrollableLegendView.ts +++ b/src/component/legend/ScrollableLegendView.ts @@ -437,7 +437,7 @@ class ScrollableLegendView extends LegendView { // Strategy: // (1) Always align based on the left/top most item. // (2) It is user-friendly that the last item shown in the - // current window is shown at the begining of next window. + // current window is shown at the beginning of next window. // Otherwise if half of the last item is cut by the window, // it will have no chance to display entirely. // (3) Consider that item size probably be different, we diff --git a/src/component/toolbox/ToolboxModel.ts b/src/component/toolbox/ToolboxModel.ts index 50d876d687..2280a26988 100644 --- a/src/component/toolbox/ToolboxModel.ts +++ b/src/component/toolbox/ToolboxModel.ts @@ -102,8 +102,8 @@ class ToolboxModel extends ComponentModel { // An initial ec option // chart.setOption( {toolbox: {feature: { featureA: {}, featureB: {}, }} } ) // indicates the declared toolbox features need to be enabled regardless of whether property - // "show" is explicity specified. But the subsequent `setOption` in merge mode requires property - // "show: false" to be explicity specified if intending to remove features, for example: + // "show" is explicitly specified. But the subsequent `setOption` in merge mode requires property + // "show: false" to be explicitly specified if intending to remove features, for example: // chart.setOption( {toolbox: {feature: { featureA: {show: false}, featureC: {} } ) // We keep backward compatibility and perform specific processing to prevent theme // settings from breaking it. diff --git a/src/coord/axisNiceTicks.ts b/src/coord/axisNiceTicks.ts index 563fbce7a6..b8c80d77d6 100644 --- a/src/coord/axisNiceTicks.ts +++ b/src/coord/axisNiceTicks.ts @@ -70,7 +70,7 @@ function calcNiceForIntervalOrLogScale( const autoIntervalPrecision = config.intervalPrecision; const autoInterval = config.interval; - // When auto calculated interval is not preferable, users are allowed to explicity specify + // When auto calculated interval is not preferable, users are allowed to explicitly specify // `interval`, `min`, `max` to customize the axis. A typical case is, in angle axis with angle // 0 - 360, where the internally calculated interval is not 60-based. // NOTICE: