Skip to content

Commit

Permalink
doc: adjust a/an word usage
Browse files Browse the repository at this point in the history
PR-URL: #41915
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Mestery <mestery@protonmail.com>
  • Loading branch information
derekwolpert authored and danielleadams committed Apr 24, 2022
1 parent 3e354da commit 9800719
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/api/net.md
Expand Up @@ -1430,7 +1430,7 @@ read by the original process. To begin reading data from a paused socket, call
The server can be a TCP server or an [IPC][] server, depending on what it
[`listen()`][`server.listen()`] to.

Here is an example of an TCP echo server which listens for connections
Here is an example of a TCP echo server which listens for connections
on port 8124:

```js
Expand Down
2 changes: 1 addition & 1 deletion doc/api/process.md
Expand Up @@ -340,7 +340,7 @@ changes:

* `err` {Error} The uncaught exception.
* `origin` {string} Indicates if the exception originates from an unhandled
rejection or from an synchronous error. Can either be `'uncaughtException'` or
rejection or from a synchronous error. Can either be `'uncaughtException'` or
`'unhandledRejection'`. The latter is used when in an exception happens in a
`Promise` based async context (or if a `Promise` is rejected) and
[`--unhandled-rejections`][] flag set to `strict` or `throw` (which is the
Expand Down
2 changes: 1 addition & 1 deletion doc/api/util.md
Expand Up @@ -1277,7 +1277,7 @@ changes:
be removed from the output. This option is only used when `encoding` is
`'utf-8'`, `'utf-16be'` or `'utf-16le'`. **Default:** `false`.

Creates an new `TextDecoder` instance. The `encoding` may specify one of the
Creates a new `TextDecoder` instance. The `encoding` may specify one of the
supported encodings or an alias.

The `TextDecoder` class is also available on the global object.
Expand Down
2 changes: 1 addition & 1 deletion doc/api/zlib.md
Expand Up @@ -128,7 +128,7 @@ The `zlib` module can be used to implement support for the `gzip`, `deflate`
and `br` content-encoding mechanisms defined by
[HTTP](https://tools.ietf.org/html/rfc7230#section-4.2).

The HTTP [`Accept-Encoding`][] header is used within an http request to identify
The HTTP [`Accept-Encoding`][] header is used within an HTTP request to identify
the compression encodings accepted by the client. The [`Content-Encoding`][]
header is used to identify the compression encodings actually applied to a
message.
Expand Down

0 comments on commit 9800719

Please sign in to comment.