Skip to content

Commit b2b6fa5

Browse files
doc: ensure line <= 80 for markdown linter
1 parent b83b520 commit b2b6fa5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

doc/api/async_hooks.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,10 @@ but having an object representing the top-level can be helpful.
508508

509509
```js
510510
const { open } = require('node:fs');
511-
const { executionAsyncId, executionAsyncResource } = require('node:async_hooks');
511+
const {
512+
executionAsyncId,
513+
executionAsyncResource
514+
} = require('node:async_hooks');
512515

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

0 commit comments

Comments
 (0)