From 80507cf04aa99fb622b745fa4097b97e2299f0c2 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Fri, 14 Jul 2017 09:18:43 +0300 Subject: [PATCH] Update article.md --- 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 e4faff96..21036fdf 100644 --- a/6-async/05-async-await/article.md +++ b/6-async/05-async-await/article.md @@ -14,7 +14,7 @@ async function f() { The word "async" before a function means one simple thing: a function always returns a promise. If the code has `return ` in it, then JavaScript automatically wraps it into a resolved promise with that value. -For instance, the code above returns a resolved promise with the result of `1`: +For instance, the code above returns a resolved promise with the result of `1`, let's test it: ```js run async function f() {