Skip to content

Commit 97fc3d2

Browse files
authored
Merge pull request #1313 from SoulsMark/patch-1
Minor fix
2 parents f3d75e9 + 6bb734b commit 97fc3d2

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
@@ -133,7 +133,7 @@ let user = await response.json();
133133
134134
Можно обернуть этот код в анонимную `async`–функцию, тогда всё заработает:
135135
136-
```js run
136+
```js
137137
(async () => {
138138
let response = await fetch('/article/promise-chaining/user.json');
139139
let user = await response.json();

0 commit comments

Comments
 (0)