From 839ed79d3fd79e2af14151198c1af7ae88cab477 Mon Sep 17 00:00:00 2001 From: Carlos Menezes Date: Wed, 14 May 2025 19:27:31 +0100 Subject: [PATCH] fix(learn): minor typo in Discover Promises in Node.js ```diff -When you order the pizza, You're in the pending state +When you order the pizza, you're in the pending state ``` Signed-off-by: Carlos Menezes --- .../en/learn/asynchronous-work/discover-promises-in-nodejs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/pages/en/learn/asynchronous-work/discover-promises-in-nodejs.md b/apps/site/pages/en/learn/asynchronous-work/discover-promises-in-nodejs.md index 71a5c919b1ff0..fedde3f62a228 100644 --- a/apps/site/pages/en/learn/asynchronous-work/discover-promises-in-nodejs.md +++ b/apps/site/pages/en/learn/asynchronous-work/discover-promises-in-nodejs.md @@ -18,7 +18,7 @@ A Promise can be in one of three states: - **Fulfilled**: The operation completed successfully, and the Promise is now resolved with a value. - **Rejected**: The operation failed, and the Promise is settled with a reason (usually an error). -When you order the pizza, You're in the pending state, hungry and hopeful. If the pizza arrives hot and cheesy, you've entered the fulfilled state. But if the restaurant calls to say they've dropped your pizza on floor, you're in the rejected state. +When you order the pizza, you're in the pending state, hungry and hopeful. If the pizza arrives hot and cheesy, you've entered the fulfilled state. But if the restaurant calls to say they've dropped your pizza on floor, you're in the rejected state. Regardless of whether your dinner ends in joy or disappointment, once there's a final outcome, the Promise is considered **settled**.