Skip to content

Commit 6ae7bb1

Browse files
sreepurnajastievanlucas
authored andcommitted
doc: fix e.g., to e.g. in docs
PR-URL: #18369 Fixes: nodejs/code-and-learn#58 Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent 39612a8 commit 6ae7bb1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

COLLABORATOR_GUIDE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ error: failed to push some refs to 'https://github.com/nodejs/node'
623623
hint: Updates were rejected because the remote contains work that you do
624624
hint: not have locally. This is usually caused by another repository pushing
625625
hint: to the same ref. You may want to first integrate the remote changes
626-
hint: (e.g., 'git pull ...') before pushing again.
626+
hint: (e.g. 'git pull ...') before pushing again.
627627
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
628628
```
629629

doc/STYLE_GUIDE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Documentation is written in markdown files with names formatted as
44
`lowercase-with-dashes.md`.
55
* Underscores in filenames are allowed only when they are present in the
6-
topic the document will describe (e.g., `child_process`).
6+
topic the document will describe (e.g. `child_process`).
77
* Some files, such as top-level markdown files, are exceptions.
88
* Documents should be word-wrapped at 80 characters.
99
* The formatting described in `.editorconfig` is preferred.

doc/api/addons.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ illustration of how it can be used.
221221
> Stability: 1 - Experimental
222222
223223
N-API is an API for building native Addons. It is independent from
224-
the underlying JavaScript runtime (e.g., V8) and is maintained as part of
224+
the underlying JavaScript runtime (e.g. V8) and is maintained as part of
225225
Node.js itself. This API will be Application Binary Interface (ABI) stable
226226
across version of Node.js. It is intended to insulate Addons from
227227
changes in the underlying JavaScript engine and allow modules

doc/api/dns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ added: v0.1.27
483483

484484
Uses the DNS protocol to resolve text queries (`TXT` records) for the
485485
`hostname`. The `records` argument passed to the `callback` function is a
486-
two-dimensional array of the text records available for `hostname` (e.g.,
486+
two-dimensional array of the text records available for `hostname` (e.g.
487487
`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of
488488
one record. Depending on the use case, these could be either joined together or
489489
treated separately.

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ added: v0.11.4
521521

522522
Returns the bound address, the address family name, and port of the
523523
underlying socket as reported by the operating system. Returns an
524-
object with three properties, e.g.,
524+
object with three properties, e.g.
525525
`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }`
526526

527527
### tlsSocket.authorizationError

0 commit comments

Comments
 (0)