From 3f1d9ed88f3db2ed49209265f9c0640bee57a94e Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Wed, 21 Aug 2019 11:16:27 -0700 Subject: [PATCH] doc: indicate that Http2ServerRequest extends Readable --- doc/api/http2.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/api/http2.md b/doc/api/http2.md index 9307244c30fc9f..444d54f0551f73 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -2628,14 +2628,13 @@ HTTP/2. added: v8.4.0 --> +* Extends: {stream.Readable} + A `Http2ServerRequest` object is created by [`http2.Server`][] or [`http2.SecureServer`][] and passed as the first argument to the [`'request'`][] event. It may be used to access a request status, headers, and data. -It implements the [Readable Stream][] interface, as well as the -following additional events, methods, and properties. - #### Event: 'aborted'