Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] stderr is last element in return value from popen4 #16

Merged
merged 1 commit into from Jul 13, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/posix/spawn.rb
Expand Up @@ -285,7 +285,7 @@ def `(cmd)
# the spawning process. Supports the standard spawn interface as described
# in the POSIX::Spawn module documentation.
#
# Returns a [pid, stdin, stderr, stdout] tuple, where pid is the new
# Returns a [pid, stdin, stdout, stderr] tuple, where pid is the new
# process's pid, stdin is a writeable IO object, and stdout / stderr are
# readable IO objects. The caller should take care to close all IO objects
# when finished and the child process's status must be collected by a call
Expand Down