From 6e1a0ece8712b4d282ad4df74141e0481cf3f483 Mon Sep 17 00:00:00 2001 From: David Date: Sun, 24 Nov 2019 16:57:23 +0000 Subject: [PATCH] fix(content): fix typo in async / await article --- src/content/resources/javascript/promises/async-await.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/resources/javascript/promises/async-await.md b/src/content/resources/javascript/promises/async-await.md index a5751ce..24587a5 100644 --- a/src/content/resources/javascript/promises/async-await.md +++ b/src/content/resources/javascript/promises/async-await.md @@ -11,7 +11,7 @@ recommended_reading: Async / Await is another way to handle the calling of asynchronous code and is built on top of Promises. It is a nice and clean way to handle asynchronous code, without the need to `.then()` functions to the promise. -It is made up of 2 keywords as the name suggests: `async` and `await`. These need to be used together and can for this method to work. +It is made up of 2 keywords as the name suggests: `async` and `await`. These need to be used together for this method to work. ## Async