From f52607107232bb91185479364a00fe4a78c5e7dc Mon Sep 17 00:00:00 2001 From: yorkie Date: Fri, 4 Dec 2015 06:07:01 +0800 Subject: [PATCH] doc: improve child_process.markdown wording PR-URL: https://github.com/nodejs/node/pull/4138 Reviewed-By: Colin Ihrig Reviewed-By: Minwoo Jung Reviewed-By: James M Snell --- doc/api/child_process.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown index 84c8a90f456bdf..00b6ff3b950eb1 100644 --- a/doc/api/child_process.markdown +++ b/doc/api/child_process.markdown @@ -26,9 +26,9 @@ Child processes always have three streams associated with them. `child.stdin`, streams of the parent process, or they may be separate stream objects which can be piped to and from. -The ChildProcess class is not intended to be used directly. Use the -[`spawn()`][], [`exec()`][], [`execFile()`][], or [`fork()`][] methods to create a Child -Process instance. +The `ChildProcess` class is not intended to be used directly. Use the +[`spawn()`][], [`exec()`][], [`execFile()`][], or [`fork()`][] methods to create +an instance of `ChildProcess`. ### Event: 'close'