From f82fd950c1a86235eb0529641f482b5a7e4ba835 Mon Sep 17 00:00:00 2001 From: nagachika Date: Mon, 21 Nov 2016 07:56:47 +0000 Subject: merge revision(s) 53668: [Backport #12759] * lib/tempfile.rb (Tempfile#initialize): [DOC] the first parameter `basename` is optional and defaulted to an empty string since [GH-523]. [Fix GH-1225] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@56858 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/tempfile.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/tempfile.rb') diff --git a/lib/tempfile.rb b/lib/tempfile.rb index 13d9585a3b..223637f84a 100644 --- a/lib/tempfile.rb +++ b/lib/tempfile.rb @@ -80,7 +80,7 @@ require 'tmpdir' # mutex. class Tempfile < DelegateClass(File) # call-seq: - # new(basename, [tmpdir = Dir.tmpdir], [options]) + # new(basename = "", [tmpdir = Dir.tmpdir], [options]) # # Creates a temporary file with permissions 0600 (= only readable and # writable by the owner) and opens it with mode "w+". -- cgit v1.2.3