From e2ae2595077e947367f26107e47a1c87e2f9537f Mon Sep 17 00:00:00 2001 From: Denis Kramarenko Date: Mon, 23 Mar 2026 12:20:05 +1000 Subject: [PATCH] Fix typo in article about Promise 'finally' Corrected spelling of 'Irresepective' to 'Irrespective'. --- 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 66d9538fc1..37eb874daf 100644 --- a/1-js/11-async/02-promise-basics/article.md +++ b/1-js/11-async/02-promise-basics/article.md @@ -222,7 +222,7 @@ The idea of `finally` is to set up a handler for performing cleanup/finalizing a E.g. stopping loading indicators, closing no longer needed connections, etc. -Think of it as a party finisher. Irresepective of whether a party was good or bad, how many friends were in it, we still need (or at least should) do a cleanup after it. +Think of it as a party finisher. Irrespective of whether a party was good or bad, how many friends were in it, we still need (or at least should) do a cleanup after it. The code may look like this: