Skip to content

Commit

Permalink
[charts] Fix typo in JSDoc (#12184)
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinruder authored Feb 22, 2024
1 parent 85d4e78 commit ba665ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/x-charts/src/ChartsXAxis/ChartsXAxis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ ChartsXAxis.propTypes = {
*/
tickMaxStep: PropTypes.number,
/**
* Maximal step between two ticks.
* Minimal step between two ticks.
* When using time data, the value is assumed to be in ms.
* Not supported by categorical axis (band, points).
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/x-charts/src/ChartsYAxis/ChartsYAxis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ ChartsYAxis.propTypes = {
*/
tickMaxStep: PropTypes.number,
/**
* Maximal step between two ticks.
* Minimal step between two ticks.
* When using time data, the value is assumed to be in ms.
* Not supported by categorical axis (band, points).
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/x-charts/src/hooks/useTicks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface TickParams {
*/
tickMaxStep?: number;
/**
* Maximal step between two ticks.
* Minimal step between two ticks.
* When using time data, the value is assumed to be in ms.
* Not supported by categorical axis (band, points).
*/
Expand Down

0 comments on commit ba665ca

Please sign in to comment.