diff options
author | Diego RodrÃguez Baquero <diegorbaquero@gmail.com> | 2017-10-20 03:25:48 -0500 |
---|---|---|
committer | Myles Borins <mylesborins@google.com> | 2017-11-28 13:10:41 +0900 |
commit | 4fbc49070482b671805d4735682a553ee3964dd9 (patch) | |
tree | 282d5e02a9894d16141d560576489d633fbfdd5d /doc | |
parent | 0a88e1bd604bb7a42b4d8bf436ea2e4829fd8e1a (diff) | |
download | node-new-4fbc49070482b671805d4735682a553ee3964dd9.tar.gz |
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')
-rw-r--r-- | doc/api/child_process.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/child_process.md b/doc/api/child_process.md index c984004f94..2859930c73 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -565,8 +565,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()`][] |