From f0ad0bafa2ed453d96efb8d43d66ee9702d5d46e Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Tue, 4 Aug 2020 10:30:25 +0300 Subject: [PATCH] minor fixes --- 1-js/11-async/08-async-await/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/08-async-await/article.md b/1-js/11-async/08-async-await/article.md index 401c732c..92c1254d 100644 --- a/1-js/11-async/08-async-await/article.md +++ b/1-js/11-async/08-async-await/article.md @@ -83,7 +83,7 @@ function f() { } ``` -We may get this error if we forget to put `async` before a function. As said, `await` only works inside an `async function`. +We may get this error if we forget to put `async` before a function. As said, `await` only works inside an `async` function. ```` Let's take the `showAvatar()` example from the chapter and rewrite it using `async/await`: