From d0fc7ab4d22533c3814e1adfc606e6e6ddc6479b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Rodr=C3=ADguez=20Baquero?= Date: Fri, 20 Oct 2017 03:25:48 -0500 Subject: [PATCH] doc: add space after period child_process IPC channel note PR-URL: https://github.com/nodejs/node/pull/16334 Reviewed-By: Anna Henningsen Reviewed-By: Luigi Pinca Reviewed-By: Yuta Hiroto --- doc/api/child_process.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index f3e386cbf268ca..883a12004cce9e 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()`][]