diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-12-14 09:27:36 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-12-14 09:27:36 +0000 |
commit | 2770438e47b9f89c30f5d80d883aa73a88aae622 (patch) | |
tree | 4a52d2c4dbb2d8a7707c6af66fb6808b5af7c51a /lib | |
parent | bf097f8f682b0d1db1498bfa4be6aad5ee7e15b2 (diff) | |
download | ruby-2770438e47b9f89c30f5d80d883aa73a88aae622.tar.gz ruby-2770438e47b9f89c30f5d80d883aa73a88aae622.tar.xz ruby-2770438e47b9f89c30f5d80d883aa73a88aae622.zip |
* lib/irb/locale.rb (IRB::Locale::puts): typo fixed. a patch from
NAKAMURA Usaku <usa@ruby-lang.org>. [ruby-dev:30012]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/irb/locale.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/locale.rb b/lib/irb/locale.rb index 8a0f33d8f..5ed9f5450 100644 --- a/lib/irb/locale.rb +++ b/lib/irb/locale.rb @@ -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 |