From a385187b7e45ef02f8c385fed99f7b745a192bc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Mon, 9 May 2022 20:42:50 +0000 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 --- 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 c0ccc2b5a68445..156d30c11171cb 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -2222,7 +2222,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 @@ -2962,8 +2962,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`.