From 8354ca5fc57765212b33e6aa7f8eebbc370939b3 Mon Sep 17 00:00:00 2001
From: alexbs <alexbs@users.noreply.github.com>
Date: Mon, 18 Jan 2021 15:17:56 +0200
Subject: [PATCH] doc: fix typo in http.server.requestTimout docs

PR-URL: https://github.com/nodejs/node/pull/36987
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
---
 doc/api/http.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/api/http.md b/doc/api/http.md
index de5e9f6c469950..6e6104c88a1599 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -1302,7 +1302,7 @@ the client.
 If the timeout expires, the server responds with status 408 without
 forwarding the request to the request listener and then closes the connection.
 
-It must be set to a non-zero value (e.g. 120 seconds) to proctect against
+It must be set to a non-zero value (e.g. 120 seconds) to protect against
 potential Denial-of-Service attacks in case the server is deployed without a
 reverse proxy in front.