From 3b63b64992a399d4080ae76043bb4e1051c4fd80 Mon Sep 17 00:00:00 2001 From: Indrek Ardel Date: Fri, 14 Oct 2016 14:08:32 +0300 Subject: [PATCH] doc: further improve child_process doc types PR-URL: https://github.com/nodejs/node/pull/9095 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Anna Henningsen --- 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 306f125f984130..dfe787d6f3cd89 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -1046,7 +1046,7 @@ this occurs. added: v0.1.90 --> -* {Stream.Readable} +* {stream.Readable} A `Readable Stream` that represents the child process's `stderr`. @@ -1061,7 +1061,7 @@ the same value. added: v0.1.90 --> -* {Stream.Writable} +* {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.Readable} +* {stream.Readable} A `Readable Stream` that represents the child process's `stdout`.