summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaz Luvaton <rluvaton@gmail.com>2021-07-24 23:13:23 +0300
committerDanielle Adams <adamzdanielle@gmail.com>2021-08-16 16:35:27 -0400
commit5d66646b7150eedd855e67d350eaabec0c326b3f (patch)
treeda57bcf4d0e9dde07a7e8cb1d2f5e75e2e57ffd3
parentf18bb2a0f10865247d70217ad35942439fd6ff49 (diff)
downloadnode-new-5d66646b7150eedd855e67d350eaabec0c326b3f.tar.gz
doc: correct cjs code to match mjs code
PR-URL: https://github.com/nodejs/node/pull/39509 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Harshitha K P <harshitha014@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
-rw-r--r--doc/api/async_hooks.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md
index 851b3fe3a9..02bb9d3001 100644
--- a/doc/api/async_hooks.md
+++ b/doc/api/async_hooks.md
@@ -374,14 +374,14 @@ net.createServer((conn) => {}).listen(8080);
```cjs
const { createHook, executionAsyncId } = require('async_hooks');
-const { fd } = require('process').stdout;
+const { stdout } = require('process');
const net = require('net');
createHook({
init(asyncId, type, triggerAsyncId) {
const eid = executionAsyncId();
fs.writeSync(
- fd,
+ stdout.fd,
`${type}(${asyncId}): trigger: ${triggerAsyncId} execution: ${eid}\n`);
}
}).enable();