Skip to content

Commit

Permalink
doc: ensure line <= 80 for markdown linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromecovington committed May 18, 2021
1 parent ebb4ff0 commit 8e6349f
Showing 1 changed file with 4 additions and 1 deletion.
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

0 comments on commit 8e6349f

Please sign in to comment.