From 8b13e6683aafecf4f7c328eea0733105856c8f7f Mon Sep 17 00:00:00 2001 From: harmony yap Date: Fri, 8 Mar 2019 09:58:17 +0000 Subject: [PATCH] Spelling correction change 'idependantly' to 'independently' --- 1-js/11-async/03-promise-chaining/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/03-promise-chaining/article.md b/1-js/11-async/03-promise-chaining/article.md index fa9db925..139782c2 100644 --- a/1-js/11-async/03-promise-chaining/article.md +++ b/1-js/11-async/03-promise-chaining/article.md @@ -92,7 +92,7 @@ promise.then(function(result) { }); ``` -What we did here is just several handlers to one promise. They don't pass the result to each other, instead they process it idependantly. +What we did here is just several handlers to one promise. They don't pass the result to each other, instead they process it independently. Here's the picture (compare it with the chaining above):