From 9ad3206367aba1dc071c4c3163f8e54953d6942a Mon Sep 17 00:00:00 2001 From: Adam Demirel Date: Tue, 9 Apr 2019 08:18:47 +1000 Subject: [PATCH] typo fix --- 1-js/11-async/06-promisify/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/06-promisify/article.md b/1-js/11-async/06-promisify/article.md index 404b8af0..4a1a5b66 100644 --- a/1-js/11-async/06-promisify/article.md +++ b/1-js/11-async/06-promisify/article.md @@ -114,5 +114,5 @@ Promisification is a great approach, especially when you use `async/await` (see Remember, a promise may have only one result, but a callback may technically be called many times. -So promisification is only meant for functions that call the callback once. Furhter calls will be ignored. +So promisification is only meant for functions that call the callback once. Further calls will be ignored. ```