Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2022-05-10 01:49:22 +0300
committerBeth Griggs <bgriggs@redhat.com>2022-05-16 13:12:07 +0300
commitc988a0ed26b226385896637de7877d1fcb897452 (patch)
treebc434564264885a3bdab44570a6765b6b1766af6 /doc/api/http.md
parent4de918b4c166a4c6dfeb4f3246f242993691aced (diff)
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 <rtrott@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Diffstat (limited to 'doc/api/http.md')
-rw-r--r--doc/api/http.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/http.md b/doc/api/http.md
index fd15d16074a..bed2f69ff1a 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`.