From c3e18bc834013e65f9cd6f86e81caf6071405b0e Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 16 Oct 2019 08:02:51 +0300 Subject: [PATCH] minor --- 1-js/11-async/01-callbacks/article.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/1-js/11-async/01-callbacks/article.md b/1-js/11-async/01-callbacks/article.md index 82a9121f..91444e7f 100644 --- a/1-js/11-async/01-callbacks/article.md +++ b/1-js/11-async/01-callbacks/article.md @@ -5,9 +5,7 @@ ```warn header="We use browser methods here" To demonstrate the use of callbacks, promises and other abstract concepts, we'll use browser methods. Namely, load scripts and perform simple document manipulations. -If you're not familiar with them, please read few chapters from the [next part](/document) of the tutorial. - -Or, maybe examples will be clear enough for you even without that. +If you're not familiar with them, please read few chapters from the [next part](/document) of the tutorial. Or, hopefully, examples will be clear for you even without that. ``` Many actions in JavaScript are *asynchronous*. In other words, we initiate them now, but they finish later.