We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67bf6ad commit c2f10a1Copy full SHA for c2f10a1
docs/user-event/api-keyboard.mdx
@@ -16,7 +16,7 @@ Keystrokes can be described:
16
```js
17
keyboard('foo') // translates to: f, o, o
18
```
19
- The brackets `{` and `[` are used as special characters and can be referenced
+ The opening brackets `{` and `[` are used as special characters and can be referenced
20
by doubling them.
21
22
keyboard('{{a[[') // translates to: {, a, [
@@ -35,7 +35,7 @@ Keystrokes can be described:
35
prefixing them with a backslash `\`.
36
37
38
- keyboard('{\}}') // translates to: }
+ keyboard('{\\}}') // translates to: }
39
40
41
- Per
0 commit comments