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.