Skip to content

Commit 5a56327

Browse files
TrottMylesBorins
authored andcommitted
doc: fix minor issues in async_hooks.md
* easily -> easy * was -> is * add a missing comma PR-URL: #19313 Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 9aa5090 commit 5a56327

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

doc/api/async_hooks.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,10 @@ unintentional side effects.
147147
Because printing to the console is an asynchronous operation, `console.log()`
148148
will cause the AsyncHooks callbacks to be called. Using `console.log()` or
149149
similar asynchronous operations inside an AsyncHooks callback function will thus
150-
cause an infinite recursion. An easily solution to this when debugging is
151-
to use a synchronous logging operation such as `fs.writeSync(1, msg)`. This
152-
will print to stdout because `1` is the file descriptor for stdout and will
153-
not invoke AsyncHooks recursively because it is synchronous.
150+
cause an infinite recursion. An easy solution to this when debugging is to use a
151+
synchronous logging operation such as `fs.writeSync(1, msg)`. This will print to
152+
stdout because `1` is the file descriptor for stdout and will not invoke
153+
AsyncHooks recursively because it is synchronous.
154154

155155
```js
156156
const fs = require('fs');
@@ -587,8 +587,8 @@ JavaScript API so that all the appropriate callbacks are called.
587587

588588
### `class AsyncResource()`
589589

590-
The class `AsyncResource` was designed to be extended by the embedder's async
591-
resources. Using this users can easily trigger the lifetime events of their
590+
The class `AsyncResource` is designed to be extended by the embedder's async
591+
resources. Using this, users can easily trigger the lifetime events of their
592592
own resources.
593593

594594
The `init` hook will trigger when an `AsyncResource` is instantiated.

0 commit comments

Comments
 (0)