Skip to content

Commit

Permalink
[docs] Fix incorrectly named AccessibleTable demo component (#35832)
Browse files Browse the repository at this point in the history
Co-authored-by: Victor He <[email protected]>
  • Loading branch information
Victor He and Victor He authored Jan 16, 2023
1 parent 2b575e2 commit fe348b9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const rows = [
createData('Eclair', 262, 16.0, 24, 6.0),
];

export default function AcccessibleTable() {
export default function AccessibleTable() {
return (
<TableContainer component={Paper}>
<Table sx={{ minWidth: 650 }} aria-label="caption table">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const rows = [
createData('Eclair', 262, 16.0, 24, 6.0),
];

export default function AcccessibleTable() {
export default function AccessibleTable() {
return (
<TableContainer component={Paper}>
<Table sx={{ minWidth: 650 }} aria-label="caption table">
Expand Down
2 changes: 1 addition & 1 deletion docs/data/material/components/tables/tables-pt.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ No exemplo a seguir, nós demonstramos como usar [react-virtualized](https://git

A caption functions like a heading for a table. Most screen readers announce the content of captions. Captions help users to find a table and understand what it's about and decide if they want to read it.

{{"demo": "AcccessibleTable.js", "bg": true}}
{{"demo": "AccessibleTable.js", "bg": true}}

## Unstyled

Expand Down
2 changes: 1 addition & 1 deletion docs/data/material/components/tables/tables-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Here is an example of a table with scrollable rows and fixed column headers. It

A caption functions like a heading for a table. Most screen readers announce the content of captions. Captions help users to find a table and understand what it's about and decide if they want to read it.

{{"demo": "AcccessibleTable.js", "bg": true}}
{{"demo": "AccessibleTable.js", "bg": true}}

## Unstyled

Expand Down
2 changes: 1 addition & 1 deletion docs/data/material/components/tables/tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Virtualization helps with performance issues.

A caption functions like a heading for a table. Most screen readers announce the content of captions. Captions help users to find a table and understand what it's about and decide if they want to read it.

{{"demo": "AcccessibleTable.js", "bg": true}}
{{"demo": "AccessibleTable.js", "bg": true}}

## Unstyled

Expand Down

0 comments on commit fe348b9

Please sign in to comment.