Skip to content

Commit 80507cf

Browse files
authored
Update article.md
1 parent 1757746 commit 80507cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

6-async/05-async-await/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ async function f() {
1414

1515
The word "async" before a function means one simple thing: a function always returns a promise. If the code has `return <non-promise>` in it, then JavaScript automatically wraps it into a resolved promise with that value.
1616

17-
For instance, the code above returns a resolved promise with the result of `1`:
17+
For instance, the code above returns a resolved promise with the result of `1`, let's test it:
1818

1919
```js run
2020
async function f() {

0 commit comments

Comments
 (0)