Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doc: ensure line <= 80 for markdown linter
  • Loading branch information
jeromecovington committed May 18, 2021
commit 8e6349f02fda4f70747812bae727724bb05bb77d
5 changes: 4 additions & 1 deletion doc/api/async_hooks.md
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,10 @@ but having an object representing the top-level can be helpful.

```js
const { open } = require('node:fs');
const { executionAsyncId, executionAsyncResource } = require('node:async_hooks');
const {
executionAsyncId,
executionAsyncResource
} = require('node:async_hooks');

console.log(executionAsyncId(), executionAsyncResource()); // 1 {}
open(__filename, 'r', (err, fd) => {
Expand Down