From 61fd390b5ea63219fc24fc42855eb5866380810b Mon Sep 17 00:00:00 2001 From: Stephen Paulsen Date: Tue, 14 Apr 2020 16:40:15 -0700 Subject: [PATCH] Correct "row" to "col" Under the heading "Structure" the text says: For accessibility, the first column is set to be a `` element, with a `scope` of `"row"`. However, for a `th` at the top of a column, the scope should be `"col"`, and inspecting the rendered table confirms that it is in fact rendered with `scope="col"` --- docs/src/pages/components/tables/tables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/pages/components/tables/tables.md b/docs/src/pages/components/tables/tables.md index 2731a231956255..62740a956880fb 100644 --- a/docs/src/pages/components/tables/tables.md +++ b/docs/src/pages/components/tables/tables.md @@ -23,7 +23,7 @@ A data table contains a header row at the top that lists column names, followed Checkboxes should accompany each row if the user needs to select or manipulate data. -For accessibility, the first column is set to be a `` element, with a `scope` of `"row"`. This enables screen readers to identify a cell's value by it's row and column name. +For accessibility, the first column is set to be a `` element, with a `scope` of `"col"`. This enables screen readers to identify a cell's value by it's row and column name. ## Simple Table