Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions doc/api/async_context.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Asynchronous Context Tracking
# Asynchronous context tracking

<!--introduced_in=v16.4.0-->

Expand All @@ -18,11 +18,11 @@ The `AsyncLocalStorage` and `AsyncResource` classes are part of the
`async_hooks` module:

```mjs
import async_hooks from 'async_hooks';
import { AsyncLocalStorage, AsyncResource } from 'async_hooks';
```

```cjs
const async_hooks = require('async_hooks');
const { AsyncLocalStorage, AsyncResource } = require('async_hooks');
```

## Class: `AsyncLocalStorage`
Expand Down
2 changes: 1 addition & 1 deletion doc/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<hr class="line"/>

* [Assertion testing](assert.md)
* [Async\_context](async\_context.md)
* [Asynchronous context tracking](async\_context.md)
* [Async hooks](async\_hooks.md)
* [Buffer](buffer.md)
* [C++ addons](addons.md)
Expand Down