From a324ea03d94236c76a863bd4acf08fee1f7dc6b9 Mon Sep 17 00:00:00 2001 From: Kohei Ueno Date: Mon, 25 Jul 2022 01:43:05 +0900 Subject: [PATCH] doc: clarify subprocess.stdout/in/err property PR-URL: https://github.com/nodejs/node/pull/43910 Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel Reviewed-By: Mestery --- doc/api/child_process.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index 0f98613f729891..ebf99ab54d2391 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -1670,7 +1670,7 @@ in which the child process is launched. added: v0.1.90 --> -* {stream.Readable} +* {stream.Readable|null|undefined} A `Readable Stream` that represents the child process's `stderr`. @@ -1680,8 +1680,8 @@ then this will be `null`. `subprocess.stderr` is an alias for `subprocess.stdio[2]`. Both properties will refer to the same value. -The `subprocess.stderr` property can be `null` if the child process could -not be successfully spawned. +The `subprocess.stderr` property can be `null` or `undefined` +if the child process could not be successfully spawned. ### `subprocess.stdin` @@ -1689,7 +1689,7 @@ not be successfully spawned. added: v0.1.90 --> -* {stream.Writable} +* {stream.Writable|null|undefined} A `Writable Stream` that represents the child process's `stdin`. @@ -1702,8 +1702,8 @@ then this will be `null`. `subprocess.stdin` is an alias for `subprocess.stdio[0]`. Both properties will refer to the same value. -The `subprocess.stdin` property can be `undefined` if the child process could -not be successfully spawned. +The `subprocess.stdin` property can be `null` or `undefined` +if the child process could not be successfully spawned. ### `subprocess.stdio` @@ -1755,7 +1755,7 @@ not be successfully spawned. added: v0.1.90 --> -* {stream.Readable} +* {stream.Readable|null|undefined} A `Readable Stream` that represents the child process's `stdout`. @@ -1775,8 +1775,8 @@ subprocess.stdout.on('data', (data) => { }); ``` -The `subprocess.stdout` property can be `null` if the child process could -not be successfully spawned. +The `subprocess.stdout` property can be `null` or `undefined` +if the child process could not be successfully spawned. ### `subprocess.unref()`