From 29368c8957aed8d1a708b56aaf55d056d48bc05c Mon Sep 17 00:00:00 2001 From: abhishektiwari003 Date: Tue, 17 Mar 2026 14:40:37 +0530 Subject: [PATCH] changes --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index f6cf8c8..a467600 100644 --- a/app.js +++ b/app.js @@ -5,7 +5,7 @@ const PORT = 8080; const server = http.createServer((req, res) => { if (req.method === "GET" && req.url === "/") { res.writeHead(200, { "Content-Type": "text/plain" }); - res.end("7thhh updateee Hello World testing"); + res.end("7thhh updateee Hello World test"); } else { res.writeHead(404, { "Content-Type": "text/plain" }); res.end("Not Found");