diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-10-17 12:40:00 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-10-17 12:40:00 +0000 |
commit | 593d9786464c94db9c776a5a968dcf65cbc1d9d4 (patch) | |
tree | fb20a17d7e82e5d49c6066f91e323ba47c77dec9 | |
parent | ecf61fa5b0eb1307c3cd969d2a3abed756cfd6f7 (diff) |
tempfile.rb: [DOC] all arguments [ci skip]
* lib/tempfile.rb (Tempfile.create): mention the other arguments
too. [ruby-core:83321] [Misc #14019]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60203 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/tempfile.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tempfile.rb b/lib/tempfile.rb index 80a356b603..5489ac044f 100644 --- a/lib/tempfile.rb +++ b/lib/tempfile.rb @@ -317,7 +317,8 @@ end # the temporary file is removed after the block terminates. # The call returns the value of the block. # -# In any case, all arguments (<code>**options</code>) will be treated as Tempfile.new. +# In any case, all arguments (+basename+, +tmpdir+, +mode+, and +# <code>**options</code>) will be treated as Tempfile.new. # # Tempfile.create('foo', '/home/temp') do |f| # ... do something with f ... |