diff options
author | Kevin Locke <kevin@kevinlocke.name> | 2013-04-26 17:14:39 -0600 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2013-05-03 16:01:33 +0200 |
commit | 1c2b03dea5846916073efeb90f3c56db09e0dec5 (patch) | |
tree | 026866903e070b06d4d2537add4d64630a6d5afb /doc | |
parent | 418c9bc60429ab4cd46d100fdfd866c66f0a853a (diff) | |
download | node-new-1c2b03dea5846916073efeb90f3c56db09e0dec5.tar.gz |
doc: update options for exec and execFile
The stdio and customFds options are never used by exec or execFile,
remove them from the documentation for these functions.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/child_process.markdown | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/doc/api/child_process.markdown b/doc/api/child_process.markdown index dade323564..85c9c8b8d4 100644 --- a/doc/api/child_process.markdown +++ b/doc/api/child_process.markdown @@ -466,11 +466,6 @@ See also: `child_process.exec()` and `child_process.fork()` * `command` {String} The command to run, with space-separated arguments * `options` {Object} * `cwd` {String} Current working directory of the child process - * `stdio` {Array|String} Child's stdio configuration. (See above) - Only stdin is configurable, anything else will lead to unpredictable - results. - * `customFds` {Array} **Deprecated** File descriptors for the child to use - for stdio. (See above) * `env` {Object} Environment key-value pairs * `encoding` {String} (Default: 'utf8') * `timeout` {Number} (Default: 0) @@ -524,9 +519,6 @@ the child process is killed. * `args` {Array} List of string arguments * `options` {Object} * `cwd` {String} Current working directory of the child process - * `stdio` {Array|String} Child's stdio configuration. (See above) - * `customFds` {Array} **Deprecated** File descriptors for the child to use - for stdio. (See above) * `env` {Object} Environment key-value pairs * `encoding` {String} (Default: 'utf8') * `timeout` {Number} (Default: 0) |