From 2cc6fa5411bf35167dc4eed958c2cfb55260c938 Mon Sep 17 00:00:00 2001 From: Issael Altero <50843123+issaelaltero@users.noreply.github.com> Date: Wed, 4 Feb 2026 08:49:39 -0700 Subject: [PATCH] Change name Vincent to Issael --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index e78e467..c8fd021 100644 --- a/app.js +++ b/app.js @@ -6,7 +6,7 @@ const port = 8082; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); - res.end('Hello World. My name is Vincent Danh'); + res.end('Hello World. My name is Issael Altero'); }); server.listen(port, hostname, () => {