From 8ef9fd28dc86906738c70e234e5b3c9ba2bd6cc4 Mon Sep 17 00:00:00 2001 From: Alaa Bouayed Date: Mon, 22 Apr 2019 16:23:57 +0100 Subject: [PATCH] Clarity --- 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 05bbcd23..c4bb84eb 100644 --- a/1-js/11-async/02-promise-basics/article.md +++ b/1-js/11-async/02-promise-basics/article.md @@ -214,7 +214,7 @@ The call `.catch(f)` is a complete analog of `.then(null, f)`, it's just a short ### finally -Just like there's a finally clause in a regular `try {...} catch {...}`, there's `finally` in promises. +Just like there's a `finally` clause in a regular `try {...} catch {...}`, there's `finally` in promises. The call `.finally(f)` is similar to `.then(f, f)` in the sense that it always runs when the promise is settled: be it resolve or reject.