Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDiego Rodríguez Baquero <diegorbaquero@gmail.com>2017-10-20 11:25:48 +0300
committerMyles Borins <mylesborins@google.com>2017-10-24 00:21:12 +0300
commitd0fc7ab4d22533c3814e1adfc606e6e6ddc6479b (patch)
tree6c2fbdd7429cc0b565799a53bb03dab72f965b26 /doc
parent6ce04d94f979485ac8c8fd978f35247a71e5ad46 (diff)
doc: add space after period
child_process IPC channel note PR-URL: https://github.com/nodejs/node/pull/16334 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/api/child_process.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/child_process.md b/doc/api/child_process.md
index f3e386cbf26..883a12004cc 100755
--- a/doc/api/child_process.md
+++ b/doc/api/child_process.md
@@ -629,8 +629,8 @@ spawn('prg', [], { stdio: ['pipe', null, null, null, 'pipe'] });
parent and child processes, and the child is a Node.js process, the child
is launched with the IPC channel unreferenced (using `unref()`) until the
child registers an event handler for the [`process.on('disconnect')`][] event
-or the [`process.on('message')`][] event.This allows the child to exit normally
-without the process being held open by the open IPC channel.*
+or the [`process.on('message')`][] event. This allows the child to exit
+normally without the process being held open by the open IPC channel.*
See also: [`child_process.exec()`][] and [`child_process.fork()`][]