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>
This commit is contained in:
Diego Rodríguez Baquero 2017-10-20 03:25:48 -05:00 committed by Anna Henningsen
parent c3ae57f253
commit c28466a2a4
No known key found for this signature in database
GPG Key ID: 9C63F3A6CD2AD8F9

View File

@ -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 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 is launched with the IPC channel unreferenced (using `unref()`) until the
child registers an event handler for the [`process.on('disconnect')`][] event child registers an event handler for the [`process.on('disconnect')`][] event
or the [`process.on('message')`][] event.This allows the child to exit normally or the [`process.on('message')`][] event. This allows the child to exit
without the process being held open by the open IPC channel.* normally without the process being held open by the open IPC channel.*
See also: [`child_process.exec()`][] and [`child_process.fork()`][] See also: [`child_process.exec()`][] and [`child_process.fork()`][]