Skip to content

Commit a1fcebd

Browse files
authored
chore(docs): fix missing commas in api object (#1825)
1 parent cf01b92 commit a1fcebd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/pages/common/imperatives-and-refs.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ const api = {
8080
// Cancel some or all animations depending on the keys passed, no keys will cancel all.
8181
stop: (cancel, keys) => this,
8282
// pause specific spring keys of the spring function
83-
pause: (keys) => this
83+
pause: (keys) => this,
8484
// resume specific spring keys of the spring function
85-
resume: (keys) => this
85+
resume: (keys) => this,
8686
}
8787
```
8888

0 commit comments

Comments
 (0)