ruby-changes:16537
From: akr <ko1@a...>
Date: Sat, 3 Jul 2010 00:02:03 +0900 (JST)
Subject: [ruby-changes:16537] Ruby:r28529 (trunk): fix doc again.
akr 2010-07-03 00:01:54 +0900 (Sat, 03 Jul 2010) New Revision: 28529 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28529 Log: fix doc again. Modified files: trunk/lib/open3.rb Index: lib/open3.rb =================================================================== --- lib/open3.rb (revision 28528) +++ lib/open3.rb (revision 28529) @@ -223,7 +223,7 @@ # 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 @@ # 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 @@ # 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. # -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/