From ee1f0531aa534ef9182cf8586f55ad82aaa55e75 Mon Sep 17 00:00:00 2001 From: Max Coplan Date: Wed, 25 Mar 2020 12:18:02 -0400 Subject: [PATCH] Docs: Fix typo (#13092) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Docs: Add further reading to rule This article really is the clearest explanation of this rule and how to understand it. * Docs: Fix line spacing my b 😂 --- docs/rules/no-return-await.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/rules/no-return-await.md b/docs/rules/no-return-await.md index f8ec4d93eca..a79a46d8483 100644 --- a/docs/rules/no-return-await.md +++ b/docs/rules/no-return-await.md @@ -47,4 +47,5 @@ If you want to use `await` to denote a value that is a thenable, even when it is ## Further Reading [`async function` on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function) + [`await vs return vs return await` by Jake Archibald](https://jakearchibald.com/2017/await-vs-return-vs-return-await/)