From 098f43f7ba836df9a247f8a51764034bee8aa5e6 Mon Sep 17 00:00:00 2001 From: "Stanislav (Stanley) Modrak" <44023416+smith558@users.noreply.github.com> Date: Thu, 16 Jun 2022 18:13:04 +0100 Subject: [PATCH] Update text --- 1-js/11-async/02-promise-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/02-promise-basics/article.md b/1-js/11-async/02-promise-basics/article.md index b701319f..4a3bc6d2 100644 --- a/1-js/11-async/02-promise-basics/article.md +++ b/1-js/11-async/02-promise-basics/article.md @@ -237,7 +237,7 @@ new Promise((resolve, reject) => { That said, `finally(f)` isn't exactly an alias of `then(f,f)` though. There are few subtle differences: 1. A `finally` handler has no arguments. In `finally` we don't know whether the promise is successful or not. That's all right, as our task is usually to perform "general" finalizing procedures. -2. A `finally` handler "passes" the result or error further to subsequent handlers. +2. A `finally` handler "passes through" the result or error to the next handler. For instance, here the result is passed through `finally` to `then`: ```js run