From bfc13f728c3ee2addb781fcabe5af6123526de25 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 14 Mar 2018 22:32:42 -0700 Subject: [PATCH] doc: fix punctuation issue in async_hooks.md Move period incorrectly placed outside of parenthesis to inside the parenthesis. The parenthetical in this case is a full sentence. --- doc/api/async_hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md index fdbcbe51f98f17..da0242a1bc18bb 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.