Skip to content

Commit

Permalink
Update role-supports-aria-props.md: fix code sample
Browse files Browse the repository at this point in the history
  • Loading branch information
n-chardon committed Jun 21, 2023
1 parent f0d2ddb commit d29cf39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/role-supports-aria-props.md
Expand Up @@ -13,7 +13,7 @@ This rule takes no arguments.
### Succeed
```jsx
<!-- Good: the radiogroup role does support the aria-required property -->
<ul role="radiogroup" aria-required aria-labelledby="foo">
<ul role="radiogroup" aria-required="true" aria-labelledby="foo">
<li tabIndex="-1" role="radio" aria-checked="false">Rainbow Trout</li>
<li tabIndex="-1" role="radio" aria-checked="false">Brook Trout</li>
<li tabIndex="0" role="radio" aria-checked="true">Lake Trout</li>
Expand Down

0 comments on commit d29cf39

Please sign in to comment.