From 31c3fc075b471882f6c4ecfc322d857516c8b016 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 PR-URL: https://github.com/nodejs/node/pull/29253 Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Anna Henningsen --- 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 9307244c30f..444d54f0551 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'