From 83f92d319437b3558aaad372a3e392336c82620e Mon Sep 17 00:00:00 2001 From: qntmLeap Date: Sat, 10 Jun 2017 18:39:04 +0300 Subject: [PATCH] Update article.md --- 6-async/01-callbacks/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-async/01-callbacks/article.md b/6-async/01-callbacks/article.md index 9faa49a2da..23fb6b75bc 100644 --- a/6-async/01-callbacks/article.md +++ b/6-async/01-callbacks/article.md @@ -223,7 +223,7 @@ That's sometimes called "callback hell" or "pyramid of doom". ![](callback-hell.png) -The "pyramid" of nested calls grows to the right with every asynchronous action. Soon it spirales out of control. +The "pyramid" of nested calls grows to the right with every asynchronous action. Soon it spirals out of control. So this way of coding isn't very good.