From 46f33223487def405700d4ba25117127c4a7ed2e Mon Sep 17 00:00:00 2001 From: yorkie Date: Fri, 23 Sep 2016 22:55:39 +0800 Subject: [PATCH] doc: improve child_process doc types PR-URL: https://github.com/nodejs/node/pull/8741 Reviewed-By: Colin Ihrig Reviewed-By: Anna Henningsen Reviewed-By: Luigi Pinca --- doc/api/child_process.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index a873aa26d5..306f125f98 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -1046,7 +1046,7 @@ this occurs. added: v0.1.90 --> -* {Stream} +* {Stream.Readable} A `Readable Stream` that represents the child process's `stderr`. @@ -1061,7 +1061,7 @@ the same value. added: v0.1.90 --> -* {Stream} +* {Stream.Writable} 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 --> -* {Stream} +* {Stream.Readable} A `Readable Stream` that represents the child process's `stdout`.