From 66e26cd253a1b65d243aa67d95e415ae392e4858 Mon Sep 17 00:00:00 2001 From: Kenneth Skovhus Date: Sun, 20 Nov 2016 22:04:53 +0100 Subject: [PATCH] doc: child_process.execSync .stdio default is pipe PR-URL: https://github.com/nodejs/node/pull/9701 Fixes: https://github.com/nodejs/node/issues/9636 Reviewed-By: Jeremiah Senkpiel Reviewed-By: Sakthipriyan Vairamani Reviewed-By: Prince John Wesley Reviewed-By: Anna Henningsen --- doc/api/child_process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/child_process.md b/doc/api/child_process.md index 414385ba50..b596b2547d 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -626,7 +626,7 @@ added: v0.11.12 * `cwd` {String} Current working directory of the child process * `input` {String|Buffer} The value which will be passed as stdin to the spawned process - supplying this value will override `stdio[0]` - * `stdio` {String|Array} Child's stdio configuration. + * `stdio` {String|Array} Child's stdio configuration. (Default: 'pipe') * `env` {Object} Environment key-value pairs * `uid` {Number} Sets the user identity of the process. (See setuid(2).) * `gid` {Number} Sets the group identity of the process. (See setgid(2).)