From 7da2d81afdba53ac129dabf45717bb38ef970797 Mon Sep 17 00:00:00 2001 From: ochuko awhe <7204868+amochuko@users.noreply.github.com> Date: Sat, 25 Jan 2025 07:59:19 +0100 Subject: [PATCH] Update anatomy-of-an-http-transaction.md Fix a typo Signed-off-by: ochuko awhe <7204868+amochuko@users.noreply.github.com> --- .../pages/en/learn/modules/anatomy-of-an-http-transaction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/pages/en/learn/modules/anatomy-of-an-http-transaction.md b/apps/site/pages/en/learn/modules/anatomy-of-an-http-transaction.md index 687fa2a19c891..1e143cef3bc06 100644 --- a/apps/site/pages/en/learn/modules/anatomy-of-an-http-transaction.md +++ b/apps/site/pages/en/learn/modules/anatomy-of-an-http-transaction.md @@ -46,7 +46,7 @@ server.on('request', (request, response) => { }); ``` -When an HTTP request hits the server, node calls the request handler function +When an HTTP request hits the server, Node calls the request handler function with a few handy objects for dealing with the transaction, `request` and `response`. We'll get to those shortly.