Skip to content

Commit 2774d33

Browse files
authored
Update article.md (#1528)
Update article.md
2 parents c06f0dd + bfb9b89 commit 2774d33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/11-async/08-async-await/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ let user = await response.json();
132132
133133
We can wrap it into an anonymous async function, like this:
134134
135-
```js run
135+
```js
136136
(async () => {
137137
let response = await fetch('/article/promise-chaining/user.json');
138138
let user = await response.json();

0 commit comments

Comments
 (0)