0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00

doc: improve child_process.markdown wording

PR-URL: https://github.com/nodejs/node/pull/4138
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Minwoo Jung <jmwsoft@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
yorkie 2015-12-04 06:07:01 +08:00 committed by James M Snell
parent 1e324d883e
commit cc2ceb6cb9

View File

@ -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'