From 5968b275ece4213735ca212055c5e22efa44bf57 Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Mon, 11 Apr 2022 11:10:59 +0200 Subject: [PATCH] doc: improve doc for http.ServerResponse inheritance Document that `http.ServerResponse` inherits from `http.OutgoingMessage`. --- 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 5c3c7d9a7a7180..c13bfed0543bab 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1505,7 +1505,7 @@ affects new connections to the server, not any existing connections. added: v0.1.17 --> -* Extends: {Stream} +* Extends: {http.OutgoingMessage} This object is created internally by an HTTP server, not by the user. It is passed as the second parameter to the [`'request'`][] event.