From 46cd9b2799b70959ccf41d3e9c522933a9e07eb1 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 5 Jun 2019 09:19:21 +0300 Subject: [PATCH] minor --- 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 b2ba231e..f58e8aec 100644 --- a/1-js/11-async/03-promise-chaining/article.md +++ b/1-js/11-async/03-promise-chaining/article.md @@ -305,7 +305,7 @@ fetch('/article/promise-chaining/user.json') }); ``` -The code works, see comments about the details, but it should be quite self-descriptive. Although, there's a potential problem in it, a typical error of those who begin to use promises. +The code works, see comments about the details. Although, there's a potential problem in it, a typical error of those who begin to use promises. Look at the line `(*)`: how can we do something *after* the avatar has finished showing and gets removed? For instance, we'd like to show a form for editing that user or something else. As of now, there's no way.