summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-03-14 22:32:42 -0700
committerRich Trott <rtrott@gmail.com>2018-03-15 14:30:30 -0700
commit9a70b2725481ef17dc8a07d6e9d3dc9f72ad0907 (patch)
treecda9bbcb8fdbe3ef560c07c4e856076006eb9998
parent5fb6f7f22f8fa7284cceb9d6ad7f96a603aca6d2 (diff)
downloadnode-new-9a70b2725481ef17dc8a07d6e9d3dc9f72ad0907.tar.gz
doc: fix punctuation issue in async_hooks.md
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 <daniel.bevenius@gmail.com> Reviewed-By: Yuta Hiroto <hello@hiroppy.me> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
-rw-r--r--doc/api/async_hooks.md2
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.