Skip to content

Commit d622347

Browse files
authored
Update a11y-semantics.md (#991)
Fix typo.
1 parent 5284fac commit d622347

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/guide/a11y-semantics.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Feel free to inspect this element in Chrome DevTools to see how the accessible n
7676

7777
#### aria-labelledby
7878

79-
Using [`aria-labelledby`](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-labelledby_attribute) is similar to `aria-label` expect it is used if the label text is visible on screen. It is paired to other elements by their `id` and you can link multiple `id`s:
79+
Using [`aria-labelledby`](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-labelledby_attribute) is similar to `aria-label` except it is used if the label text is visible on screen. It is paired to other elements by their `id` and you can link multiple `id`s:
8080

8181
```html
8282
<form
@@ -106,7 +106,7 @@ Using [`aria-labelledby`](https://developer.mozilla.org/en-US/docs/Web/Accessibi
106106

107107
#### aria-describedby
108108

109-
[aria-describedby](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute) is used the same way as `aria-labelledby` expect provides a description with additional information that the user might need. This can be used to describe the criteria for any input:
109+
[aria-describedby](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-describedby_attribute) is used the same way as `aria-labelledby` except provides a description with additional information that the user might need. This can be used to describe the criteria for any input:
110110

111111
```html
112112
<form

0 commit comments

Comments
 (0)