From 4c7e4bee31796b2247562596eaf988201be13b90 Mon Sep 17 00:00:00 2001 From: Evan Caldwell Date: Fri, 19 Oct 2018 10:27:55 -0400 Subject: [PATCH] fixed a typo --- 6-async/05-async-await/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-async/05-async-await/article.md b/6-async/05-async-await/article.md index 70b0583d..1b37e9b0 100644 --- a/6-async/05-async-await/article.md +++ b/6-async/05-async-await/article.md @@ -4,7 +4,7 @@ There's a special syntax to work with promises in a more comfortable fashion, ca ## Async functions -Let's start with the `async` keyword. It can be placed before function, like this: +Let's start with the `async` keyword. It can be placed before a function, like this: ```js async function f() {