From 421bbe5624105e02a4cc2782f8e9014c44262020 Mon Sep 17 00:00:00 2001 From: 11201010 <3a6l8j6l@gmail.com> Date: Sat, 15 Jan 2022 16:30:52 +0800 Subject: [PATCH] Update article.md fix spelling error at line 139: "Lke" to "Like" --- 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 () => {