1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/open3.rb: fix code formatting in documentation by @JoshCheek

[fix GH-747][ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48257 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2014-11-04 03:09:28 +00:00
parent 478e1b04df
commit 91dd80fac7
2 changed files with 14 additions and 9 deletions

View file

@ -1,3 +1,8 @@
Tue Nov 4 12:09:18 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* lib/open3.rb: fix code formatting in documentation by @JoshCheek
[fix GH-747][ci skip]
Tue Nov 4 08:57:37 2014 Eric Wong <e@80x24.org> Tue Nov 4 08:57:37 2014 Eric Wong <e@80x24.org>
* encoding.c (enc_memsize): remove unnecessary function * encoding.c (enc_memsize): remove unnecessary function

View file

@ -214,11 +214,11 @@ module Open3
# stdout_str, stderr_str, status = Open3.capture3([env,] cmd... [, opts]) # stdout_str, stderr_str, status = Open3.capture3([env,] cmd... [, opts])
# #
# The arguments env, cmd and opts are passed to Open3.popen3 except # The arguments env, cmd and opts are passed to Open3.popen3 except
# opts[:stdin_data] and opts[:binmode]. See Process.spawn. # <code>opts[:stdin_data]</code> and <code>opts[:binmode]</code>. See Process.spawn.
# #
# If opts[:stdin_data] is specified, it is sent to the command's standard input. # If <code>opts[:stdin_data]</code> is specified, it is sent to the command's standard input.
# #
# If opts[:binmode] is true, internal pipes are set to binary mode. # If <code>opts[:binmode]</code> is true, internal pipes are set to binary mode.
# #
# Examples: # Examples:
# #
@ -272,11 +272,11 @@ module Open3
# stdout_str, status = Open3.capture2([env,] cmd... [, opts]) # stdout_str, status = Open3.capture2([env,] cmd... [, opts])
# #
# The arguments env, cmd and opts are passed to Open3.popen3 except # The arguments env, cmd and opts are passed to Open3.popen3 except
# opts[:stdin_data] and opts[:binmode]. See Process.spawn. # <code>opts[:stdin_data]</code> and <code>opts[:binmode]</code>. See Process.spawn.
# #
# If opts[:stdin_data] is specified, it is sent to the command's standard input. # If <code>opts[:stdin_data]</code> is specified, it is sent to the command's standard input.
# #
# If opts[:binmode] is true, internal pipes are set to binary mode. # If <code>opts[:binmode]</code> is true, internal pipes are set to binary mode.
# #
# Example: # Example:
# #
@ -320,11 +320,11 @@ module Open3
# stdout_and_stderr_str, status = Open3.capture2e([env,] cmd... [, opts]) # stdout_and_stderr_str, status = Open3.capture2e([env,] cmd... [, opts])
# #
# The arguments env, cmd and opts are passed to Open3.popen3 except # The arguments env, cmd and opts are passed to Open3.popen3 except
# opts[:stdin_data] and opts[:binmode]. See Process.spawn. # <code>opts[:stdin_data]</code> and <code>opts[:binmode]</code>. See Process.spawn.
# #
# If opts[:stdin_data] is specified, it is sent to the command's standard input. # If <code>opts[:stdin_data]</code> is specified, it is sent to the command's standard input.
# #
# If opts[:binmode] is true, internal pipes are set to binary mode. # If <code>opts[:binmode]</code> is true, internal pipes are set to binary mode.
# #
# Example: # Example:
# #