From 15b1b550a4ba124448918caca3eb1ee8170e006a Mon Sep 17 00:00:00 2001 From: Kiffie Liversage Date: Sat, 2 Mar 2019 12:03:32 +0200 Subject: [PATCH] Fix typo - "that" to "than" (#23) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3ab1c7..fa0adac 100644 --- a/README.md +++ b/README.md @@ -2168,7 +2168,7 @@ Promises supports a few helper methods that help make code more conscise: ### Async/Await are even cleaner than Promises -With `async`/`await` syntax you can write code that is far cleaner and more understandable that chained promises. Within a function prefixed with `async` keyword you have a way to tell the JavaScript runtime to pause the execution of code on the `await` keyword (when used on a promise). +With `async`/`await` syntax you can write code that is far cleaner and more understandable than chained promises. Within a function prefixed with `async` keyword you have a way to tell the JavaScript runtime to pause the execution of code on the `await` keyword (when used on a promise). **Bad:**