Skip to content

Commit ceeb514

Browse files
authored
Merge pull request testing-library#256 from ashr81/patch-1
Adds in missing parenthesis for an example
2 parents 905cb94 + 9ce2132 commit ceeb514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guide-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ getting blurred. To simulate this behavior you can simply replace `fireEvent`
6363
with imperative focus:
6464

6565
```diff
66-
- fireEvent.focus(getByText('focus me');
66+
- fireEvent.focus(getByText('focus me'));
6767
+ getByText('focus me').focus();
6868
```
6969

0 commit comments

Comments
 (0)