Skip to content

Commit 60f3da0

Browse files
fix: added a tab spacing to the docs file
1 parent 508221b commit 60f3da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/rules/ensure-matching-remove-event-listener.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Examples of **correct** code for this rule:
3333
useEffect(() => {
3434
window.addEventListener("keydown", handleUserKeyPress);
3535
return () => {
36-
window.removeEventListener("keydown", handleUserKeyPress);
36+
window.removeEventListener("keydown", handleUserKeyPress);
3737
};
3838
}, []);
3939
```

0 commit comments

Comments
 (0)