From 9f115ba9e931071bd146a716ce8763178ace5983 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 4a577595ca41d1..779fa154d6592a 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -3196,7 +3196,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.