diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/async_hooks.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md index c7fc97181a..7682749d70 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -284,7 +284,7 @@ The `TCPSERVERWRAP` is the server which receives the connections. The `TCPWRAP` is the new connection from the client. When a new connection is made, the `TCPWrap` instance is immediately constructed. This happens outside of any JavaScript stack. (An `executionAsyncId()` of `0` means -that it is being executed from C++ with no JavaScript stack above it). With only +that it is being executed from C++ with no JavaScript stack above it.) With only that information, it would be impossible to link resources together in terms of what caused them to be created, so `triggerAsyncId` is given the task of propagating what resource is responsible for the new resource's existence. |