summaryrefslogtreecommitdiff
path: root/doc/api/child_process.md
diff options
context:
space:
mode:
authorDiego Rodríguez Baquero <diegorbaquero@gmail.com>2017-10-20 03:25:48 -0500
committerAnna Henningsen <anna@addaleax.net>2017-10-20 10:29:35 +0200
commitc28466a2a440eb10d8dd8f1fb9467eb3e1b1a0d9 (patch)
tree7ea43d4f299239c78f04ea1faf7f61a01b970141 /doc/api/child_process.md
parentc3ae57f2536d3d7f3f496d6ee3e922c671ad7215 (diff)
downloadandroid-node-v8-c28466a2a440eb10d8dd8f1fb9467eb3e1b1a0d9.tar.gz
android-node-v8-c28466a2a440eb10d8dd8f1fb9467eb3e1b1a0d9.tar.bz2
android-node-v8-c28466a2a440eb10d8dd8f1fb9467eb3e1b1a0d9.zip
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/api/child_process.md')
-rw-r--r--doc/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 02f3201f2b..fc75029d6e 100644
--- a/doc/api/child_process.md
+++ b/doc/api/child_process.md
@@ -646,8 +646,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()`][]