From 26fe61b6adeb7e03ec6793be003b7c0362a85846 Mon Sep 17 00:00:00 2001 From: Arnold Zokas Date: Wed, 23 Feb 2022 18:16:50 +0000 Subject: [PATCH] doc: document change to IncomingMessage.headers enumerability The IncomingMessage.headers property was made non-enumerable in PR #35281. PR-URL: https://github.com/nodejs/node/pull/42095 Reviewed-By: Matteo Collina Reviewed-By: Colin Ihrig Reviewed-By: Robert Nagy Reviewed-By: Benjamin Gruenbaum Reviewed-By: Harshitha K P --- 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 50bcd797e30c22..632d0866271df8 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -2189,7 +2189,7 @@ changes: pr-url: https://github.com/nodejs/node/pull/35281 description: >- `message.headers` is now lazily computed using an accessor property - on the prototype. + on the prototype and is no longer enumerable. --> * {Object}