From 1a54a9ea83747a0db5488a6a6498f68ba1f324d8 Mon Sep 17 00:00:00 2001 From: Devan Thakur Date: Tue, 19 Mar 2019 12:14:00 +0530 Subject: [PATCH] Fix Typo --- 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):