From c2356225c4b5fac8c081e14029c34fea8fea16fb Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 4 Jul 2014 20:05:54 +0000 Subject: [PATCH] lib/irb/locale.rb: fix typo * lib/irb/locale.rb (IRB::Locale#modifier): fix wrong attr_reader `modifieer` => `modifier` from irb locale. [fix GH-656] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/irb/locale.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 62fce08695..dfa3cc4ae8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Jul 5 05:05:53 2014 Vipul A M + + * lib/irb/locale.rb (IRB::Locale#modifier): fix wrong attr_reader + `modifieer` => `modifier` from irb locale. [fix GH-656] + Fri Jul 4 20:45:26 2014 Koichi Sasada * parse.y: rename symbols::sym_id to symbols::str_id. diff --git a/lib/irb/locale.rb b/lib/irb/locale.rb index accce9e13f..d463258fc8 100644 --- a/lib/irb/locale.rb +++ b/lib/irb/locale.rb @@ -39,7 +39,7 @@ module IRB # :nodoc: @encoding ||= (Encoding.find('locale') rescue Encoding::ASCII_8BIT) end - attr_reader :lang, :territory, :encoding, :modifieer + attr_reader :lang, :territory, :encoding, :modifier def String(mes) mes = super(mes)