Skip to content

Commit

Permalink
[Docs] click-events-have-key-events: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
azat-io authored and ljharb committed Nov 9, 2024
1 parent 743168b commit d32edac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/click-events-have-key-events.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This rule takes no arguments.
<div onClick={() => {}} onKeyUp={this.handleKeyUp} />
<div onClick={() => {}} onKeyPress={this.handleKeyPress} />
<button onClick={() => {}} />
<div onClick{() => {}} aria-hidden="true" />
<div onClick={() => {}} aria-hidden="true" />
```

### Fail
Expand Down

0 comments on commit d32edac

Please sign in to comment.