diff --git a/lib/open3.rb b/lib/open3.rb index 030cfa4..d1a569f 100644 --- a/lib/open3.rb +++ b/lib/open3.rb @@ -1009,7 +1009,7 @@ def pipeline_rw(*cmds, &block) # see {Execution Environment}[https://docs.ruby-lang.org/en/master/Process.html#module-Process-label-Execution+Environment]. # # If the last argument is a hash, it becomes trailing argument +options+ - # in each call to Process.spawn' + # in each call to Process.spawn; # see {Execution Options}[https://docs.ruby-lang.org/en/master/Process.html#module-Process-label-Execution+Options]. # # Each remaining argument in +cmds+ is one of: @@ -1034,8 +1034,9 @@ def pipeline_r(*cmds, &block) end module_function :pipeline_r + # :call-seq: - # Open3.pipeline_w([env, ] *cmds, options = {}) -> array_of_statuses + # Open3.pipeline_w([env, ] *cmds, options = {}) -> [first_stdin, wait_threads] # # Basically a wrapper for # {Process.spawn}[https://docs.ruby-lang.org/en/master/Process.html#method-c-spawn] @@ -1089,7 +1090,7 @@ def pipeline_r(*cmds, &block) # see {Execution Environment}[https://docs.ruby-lang.org/en/master/Process.html#module-Process-label-Execution+Environment]. # # If the last argument is a hash, it becomes trailing argument +options+ - # in each call to Process.spawn' + # in each call to Process.spawn; # see {Execution Options}[https://docs.ruby-lang.org/en/master/Process.html#module-Process-label-Execution+Options]. # # Each remaining argument in +cmds+ is one of: