Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/tutorial/02-getting-started/02-quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ In an asynchronous function, you can also use `await alovaInstance.Get` to wait
Submit data through `alovaInstance.Post`. This is also very simple.

```js
const response = alovaInstance.Post('https://alovajs.dev/posts', {
const response = await alovaInstance.Post('https://alovajs.dev/posts', {
title: 'foo',
body: 'bar',
userId: 1
Expand Down