From c988a0ed26b226385896637de7877d1fcb897452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Tue, 10 May 2022 00:49:22 +0200 Subject: [PATCH] doc: use serial comma in http docs Refs: https://github.com/nodejs/node/pull/11321 Refs: https://github.com/nodejs/node/pull/17384 PR-URL: https://github.com/nodejs/node/pull/43026 Reviewed-By: Rich Trott Reviewed-By: Mohammed Keyvanzadeh --- doc/api/http.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/http.md b/doc/api/http.md index fd15d16074a45c..bed2f69ff1a679 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -2220,7 +2220,7 @@ changes: An `IncomingMessage` object is created by [`http.Server`][] or [`http.ClientRequest`][] and passed as the first argument to the [`'request'`][] and [`'response'`][] event respectively. It may be used to access response -status, headers and data. +status, headers, and data. Different from its `socket` value which is a subclass of {stream.Duplex}, the `IncomingMessage` itself extends {stream.Readable} and is created separately to @@ -2960,8 +2960,8 @@ added: v0.1.13 changes: - version: v18.0.0 pr-url: https://github.com/nodejs/node/pull/41263 - description: The `requestTimeout`, `headersTimeout`, `keepAliveTimeout` and - `connectionsCheckingInterval` are supported now. + description: The `requestTimeout`, `headersTimeout`, `keepAliveTimeout`, and + `connectionsCheckingInterval` options are supported now. - version: v18.0.0 pr-url: https://github.com/nodejs/node/pull/42163 description: The `noDelay` option now defaults to `true`.