fix(content): fix typo in async / await article

This commit is contained in:
David
2019-11-24 16:57:23 +00:00
committed by GitHub
parent 04d499a44f
commit 6e1a0ece87
@@ -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