From a98228ddef5edbc8ee0d64d809df393aeda35d17 Mon Sep 17 00:00:00 2001 From: thomas paulson Date: Wed, 23 Apr 2025 16:55:33 +0530 Subject: [PATCH] fix typo Request Handler Fix heading Request Handler --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 69fe178..04ca45e 100644 --- a/README.md +++ b/README.md @@ -633,7 +633,7 @@ const server = http.createServer(requestListener); server.listen(8080); ``` -### Request Handler +### Request Listener The **Request listener** is the main entry to the server. This callback function handles the incoming client request and sends a response back to the client.