From 8120cfe262258e7d154668fd0a4091515c70a804 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= <magallania@gmail.com>
Date: Wed, 12 Oct 2022 09:40:49 -0300
Subject: [PATCH] Typographical fix (paragraph 04) (#2262)

---
 .../content/104-nodejs-async-programming/102-promises.md        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/102-promises.md b/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/102-promises.md
index ad3532265..efff2338f 100644
--- a/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/102-promises.md
+++ b/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/102-promises.md
@@ -1,7 +1,7 @@
 # Promises
 
 A promise is commonly defined as a proxy for a value that will eventually become available
-Asynchronous functions use promise behind the scens, so understanding how promises work is fundamental to understanding how "async" and "await" works.
+Asynchronous functions use promise behind the scenes, so understanding how promises work is fundamental to understanding how "async" and "await" works.
 Once a promise has been called, it will start in a pending state. This means that the calling function continues executing, while the promise is pending until it resolves, giving the calling function whatever data was being requested.
 
 Creating a Promise: