Browse Source

Typo: stout -> stdout

Closes #874
v0.7.4-release
Alex Xu 14 years ago
committed by Bert Belder
parent
commit
1c174cc1aa
  1. 2
      doc/api/child_processes.markdown

2
doc/api/child_processes.markdown

@ -65,7 +65,7 @@ The third argument is used to specify additional options, which defaults to:
`cwd` allows you to specify the working directory from which the process is spawned. `cwd` allows you to specify the working directory from which the process is spawned.
Use `env` to specify environment variables that will be visible to the new process. Use `env` to specify environment variables that will be visible to the new process.
With `customFds` it is possible to hook up the new process' [stdin, stout, stderr] to With `customFds` it is possible to hook up the new process' [stdin, stdout, stderr] to
existing streams; `-1` means that a new stream should be created. `setsid`, existing streams; `-1` means that a new stream should be created. `setsid`,
if set true, will cause the subprocess to be run in a new session. if set true, will cause the subprocess to be run in a new session.

Loading…
Cancel
Save