diff options
author | Erich Kist <erichkist@gmail.com> | 2012-07-19 14:19:43 -0300 |
---|---|---|
committer | Erich Kist <erichkist@gmail.com> | 2012-07-19 14:19:43 -0300 |
commit | 69879667dcf4494915f1b9d826f17856bff11887 (patch) | |
tree | ee5c5ce4a8d843106d4234eecbe10966993b3797 /activesupport | |
parent | 27014bbf513ebb2dde143ebd745283496e7db558 (diff) | |
download | rails-69879667dcf4494915f1b9d826f17856bff11887.tar.gz rails-69879667dcf4494915f1b9d826f17856bff11887.tar.bz2 rails-69879667dcf4494915f1b9d826f17856bff11887.zip |
Fix a reference
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/hash_with_indifferent_access.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/hash_with_indifferent_access.rb b/activesupport/lib/active_support/hash_with_indifferent_access.rb index 3e6c8893e9..a6796d44f0 100644 --- a/activesupport/lib/active_support/hash_with_indifferent_access.rb +++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb @@ -96,7 +96,7 @@ module ActiveSupport alias_method :has_key?, :key? alias_method :member?, :key? - # Fetches the value for the specified key, same as doing hash[key] + # Fetches the value for the specified key, same as doing <tt>hash[key]</tt> def fetch(key, *extras) super(convert_key(key), *extras) end |