From 59a2f34123653dc7c58c82e21a9ab12f3ec150a4 Mon Sep 17 00:00:00 2001 From: Vse Mozhe Buty Date: Tue, 10 Nov 2020 13:03:41 +0000 Subject: [PATCH] Fix a typo in 1.11.3 (Promises chaining) Refs: https://github.com/javascript-tutorial/en.javascript.info/pull/2252#issuecomment-724565094 --- 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 9f3b60f3..65c3bd4c 100644 --- a/1-js/11-async/03-promise-chaining/article.md +++ b/1-js/11-async/03-promise-chaining/article.md @@ -265,7 +265,7 @@ fetch('/article/promise-chaining/user.json') Now let's do something with the loaded user. -For instance, we can make one more requests to GitHub, load the user profile and show the avatar: +For instance, we can make one or more requests to GitHub, load the user profile and show the avatar: ```js run // Make a request for user.json