Skip to content

Commit 7de5fd1

Browse files
Manuel Haller Polophortx
authored andcommitted
Remove double await in Doc example (#85)
1 parent 311eb5d commit 7de5fd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guide/push.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Via calling
99

1010
```javascript
1111
const post = Post.query().first();
12-
await await post.$push();
12+
await post.$push();
1313
// or
1414
await post.$dispatch('push', { data: post });
1515
```

0 commit comments

Comments
 (0)