mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
8eedcaa6b5
commit
c2356225c4
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Sat Jul 5 05:05:53 2014 Vipul A M <vipulnsward@gmail.com>
|
||||||
|
|
||||||
|
* 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@atdot.net>
|
Fri Jul 4 20:45:26 2014 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* parse.y: rename symbols::sym_id to symbols::str_id.
|
* parse.y: rename symbols::sym_id to symbols::str_id.
|
||||||
|
|
|
@ -39,7 +39,7 @@ module IRB # :nodoc:
|
||||||
@encoding ||= (Encoding.find('locale') rescue Encoding::ASCII_8BIT)
|
@encoding ||= (Encoding.find('locale') rescue Encoding::ASCII_8BIT)
|
||||||
end
|
end
|
||||||
|
|
||||||
attr_reader :lang, :territory, :encoding, :modifieer
|
attr_reader :lang, :territory, :encoding, :modifier
|
||||||
|
|
||||||
def String(mes)
|
def String(mes)
|
||||||
mes = super(mes)
|
mes = super(mes)
|
||||||
|
|
Loading…
Add table
Reference in a new issue