Skip to content

Commit e21761c

Browse files
authored
Trust the linter
1 parent f9b362f commit e21761c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/api/esm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ export function globalPreload({ port }) {
989989
### Examples
990990
991991
The various loader hooks can be used together to accomplish wide-ranging
992-
customizations of Node.js' code loading and evaluation behaviors.
992+
customizations of the Node.js code loading and evaluation behaviors.
993993
994994
#### HTTPS loader
995995

src/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ the process otherwise. `maybe.FromJust()` (aka `maybe.ToChecked()`) can be used
556556
to access the value and crash the process if it is not set.
557557
558558
This should only be performed if it is actually sure that the operation has
559-
not failed. A lot of Node.js's source code does **not** follow this rule, and
559+
not failed. A lot of the Node.js source code does **not** follow this rule, and
560560
can be brought to crash through this.
561561
562562
In particular, it is often not safe to assume that an operation does not throw
@@ -859,7 +859,7 @@ this information is provided to async tracking tools.
859859
The `AsyncWrap` class has a set of methods called `MakeCallback()`, with the
860860
intention of the naming being that it is used to “make calls back into
861861
JavaScript” from the event loop, rather than making callbacks in some way.
862-
(As the naming has made its way into Node.js's public API, it's not worth
862+
(As the naming has made its way into the Node.js public API, it's not worth
863863
the breakage of fixing it).
864864
865865
`MakeCallback()` generally calls a method on the JavaScript object associated
@@ -936,7 +936,7 @@ classes provide the same facilities as [`MakeCallback()`][], namely:
936936

937937
Usually, using `AsyncWrap::MakeCallback()` or using the constructor taking
938938
an `AsyncWrap*` argument (i.e. used as
939-
`InternalCallbackScope callback_scope(this);`) suffices inside of Node.js's
939+
`InternalCallbackScope callback_scope(this);`) suffices inside of the Node.js
940940
C++ codebase.
941941

942942
## C++ utilities

0 commit comments

Comments
 (0)