From 199e4123adada283d1d30353c1aa29e491a40351 Mon Sep 17 00:00:00 2001 From: Ta Thien Phuoc Date: Tue, 21 Dec 2021 18:21:29 +0700 Subject: [PATCH] Fix sentence --- 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 6e3bb8c0..e679b1c4 100644 --- a/1-js/11-async/08-async-await/article.md +++ b/1-js/11-async/08-async-await/article.md @@ -136,7 +136,7 @@ console.log(user); If we're not using modules, or [older browsers](https://caniuse.com/mdn-javascript_operators_await_top_level) must be supported, there's a universal recipe: wrapping into an anonymous async function. -Lke this: +Like this: ```js (async () => {