From 9a70b2725481ef17dc8a07d6e9d3dc9f72ad0907 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move period incorrectly placed outside of parentheses to inside the parentheses. The parenthetical in this case is a full sentence. PR-URL: https://github.com/nodejs/node/pull/19364 Reviewed-By: Daniel Bevenius Reviewed-By: Yuta Hiroto Reviewed-By: Vse Mozhet Byt Reviewed-By: James M Snell Reviewed-By: Gibson Fahnestock Reviewed-By: Colin Ihrig Reviewed-By: Tobias Nießen --- 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 c7fc97181a2..7682749d709 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.