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/branches/ruby_1_8@11383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
aa31f287f8
commit
17b448b7a2
2 changed files with 6 additions and 1 deletions
|
|
@ -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]
|
||||||
|
|
||||||
Mon Dec 11 11:58:36 2006 Akinori MUSHA <knu@iDaemons.org>
|
Mon Dec 11 11:58:36 2006 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
* ext/digest/sha2/lib/sha2.rb: Moved one level up from under
|
* ext/digest/sha2/lib/sha2.rb: Moved one level up from under
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@ module IRB
|
||||||
end
|
end
|
||||||
|
|
||||||
def puts(*opts)
|
def puts(*opts)
|
||||||
ary = opts.collect{|opt| String(opts)}
|
ary = opts.collect{|opt| String(opt)}
|
||||||
super(*ary)
|
super(*ary)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue