ruby-changes:34617
From: nobu <ko1@a...>
Date: Sat, 5 Jul 2014 05:06:10 +0900 (JST)
Subject: [ruby-changes:34617] nobu:r46700 (trunk): lib/irb/locale.rb: fix typo
nobu 2014-07-05 05:05:54 +0900 (Sat, 05 Jul 2014) New Revision: 46700 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=46700 Log: 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] Modified files: trunk/ChangeLog trunk/lib/irb/locale.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 46699) +++ ChangeLog (revision 46700) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sat Jul 5 05:05:53 2014 Vipul A M <vipulnsward@g...> + + * 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 <ko1@a...> * parse.y: rename symbols::sym_id to symbols::str_id. Index: lib/irb/locale.rb =================================================================== --- lib/irb/locale.rb (revision 46699) +++ lib/irb/locale.rb (revision 46700) @@ -39,7 +39,7 @@ module IRB # :nodoc: https://github.com/ruby/ruby/blob/trunk/lib/irb/locale.rb#L39 @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) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/