@@ -556,7 +556,7 @@ the process otherwise. `maybe.FromJust()` (aka `maybe.ToChecked()`) can be used
556556to access the value and crash the process if it is not set.
557557
558558This 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
560560can be brought to crash through this.
561561
562562In 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.
859859The `AsyncWrap` class has a set of methods called `MakeCallback()`, with the
860860intention of the naming being that it is used to “make calls back into
861861JavaScript” 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
863863the 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
937937Usually, using ` AsyncWrap::MakeCallback() ` or using the constructor taking
938938an ` 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
940940C++ codebase.
941941
942942## C++ utilities
0 commit comments