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

* lib/irb/locale.rb (IRB::Locale::puts): typo fixed. a patch from

NAKAMURA Usaku <usa@ruby-lang.org>.  [ruby-dev:30012]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-12-14 09:27:36 +00:00
parent 1275a05824
commit c89e82837f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Thu Dec 14 18:20:43 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/irb/locale.rb (IRB::Locale::puts): typo fixed. a patch from
NAKAMURA Usaku <usa@ruby-lang.org>. [ruby-dev:30012]
Tue Dec 12 23:33:53 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/optparse.rb (Switch#parse_arg, Switch#conv_arg): splat failures.

View file

@ -71,7 +71,7 @@ module IRB
end
def puts(*opts)
ary = opts.collect{|opt| String(opts)}
ary = opts.collect{|opt| String(opt)}
super(*ary)
end