summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-12-14 09:27:36 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-12-14 09:27:36 +0000
commit17b448b7a2ede1ad5835fcb0ef02798b6bb8c1f3 (patch)
tree02bd47b539c6c8efa4f1195e6b2b364e6175b61f /lib
parentaa31f287f8a23dce34699ab1cefc782de9fdd368 (diff)
* 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
Diffstat (limited to 'lib')
-rw-r--r--lib/irb/locale.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/locale.rb b/lib/irb/locale.rb
index 8a0f33d8fb..5ed9f54507 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