diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-07-02 15:01:54 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-07-02 15:01:54 +0000 |
commit | 9c1884066726007588f9c212c5d9b9e04a2d7654 (patch) | |
tree | 0a5c23c7c5b82a3467ba0fa8589cf8c2ed63f56b | |
parent | fc90d4a10969321f5ec75a3a2a513f11407a9602 (diff) |
fix doc again.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/open3.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/open3.rb b/lib/open3.rb index 247239e262..b65cb19403 100644 --- a/lib/open3.rb +++ b/lib/open3.rb @@ -223,7 +223,7 @@ module Open3 # stdout_str, stderr_str, status = Open3.capture3([env,] cmd... [, opts]) # # The arguments env, cmd and opts are passed to Open3.popen3 except - # opts[:stdin_data]. See Process.spawn. + # opts[:stdin_data] and opts[:binmode]. See Process.spawn. # # If opts[:stdin_data] is specified, it is sent to the command's standard input. # @@ -287,7 +287,7 @@ module Open3 # stdout_str, status = Open3.capture2([env,] cmd... [, opts]) # # The arguments env, cmd and opts are passed to Open3.popen3 except - # opts[:stdin_data]. See Process.spawn. + # opts[:stdin_data] and opts[:binmode]. See Process.spawn. # # If opts[:stdin_data] is specified, it is sent to the command's standard input. # @@ -339,7 +339,7 @@ module Open3 # stdout_and_stderr_str, status = Open3.capture2e([env,] cmd... [, opts]) # # The arguments env, cmd and opts are passed to Open3.popen3 except - # opts[:stdin_data]. See Process.spawn. + # opts[:stdin_data] and opts[:binmode]. See Process.spawn. # # If opts[:stdin_data] is specified, it is sent to the command's standard input. # |