From 0dba3a4abddd1c0439e3ab5a8f3c0e28397f2421 Mon Sep 17 00:00:00 2001 From: Egawa Ryo Date: Sun, 18 Aug 2024 22:09:11 +0900 Subject: [PATCH] doc: fix error description of the max header size PR-URL: https://github.com/nodejs/node/pull/54125 Reviewed-By: Luigi Pinca --- doc/api/errors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/errors.md b/doc/api/errors.md index eaefe13560ccba..a92c021004a84a 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -3230,7 +3230,7 @@ changes: --> Too much HTTP header data was received. In order to protect against malicious or -malconfigured clients, if more than 8 KiB of HTTP header data is received then +malconfigured clients, if more than `maxHeaderSize` of HTTP header data is received then HTTP parsing will abort without a request or response object being created, and an `Error` with this code will be emitted.