Browse Source

doc: further improve child_process doc types

PR-URL: https://github.com/nodejs/node/pull/9095
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
v6
Indrek Ardel 8 years ago
committed by James M Snell
parent
commit
7f02fecab1
  1. 6
      doc/api/child_process.md

6
doc/api/child_process.md

@ -1046,7 +1046,7 @@ this occurs.
added: v0.1.90 added: v0.1.90
--> -->
* {Stream.Readable} * {stream.Readable}
A `Readable Stream` that represents the child process's `stderr`. A `Readable Stream` that represents the child process's `stderr`.
@ -1061,7 +1061,7 @@ the same value.
added: v0.1.90 added: v0.1.90
--> -->
* {Stream.Writable} * {stream.Writable}
A `Writable Stream` that represents the child process's `stdin`. A `Writable Stream` that represents the child process's `stdin`.
@ -1119,7 +1119,7 @@ assert.equal(child.stdio[2], child.stderr);
added: v0.1.90 added: v0.1.90
--> -->
* {Stream.Readable} * {stream.Readable}
A `Readable Stream` that represents the child process's `stdout`. A `Readable Stream` that represents the child process's `stdout`.

Loading…
Cancel
Save