aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErich Kist <erichkist@gmail.com>2012-07-19 14:19:43 -0300
committerErich Kist <erichkist@gmail.com>2012-07-19 14:19:43 -0300
commit69879667dcf4494915f1b9d826f17856bff11887 (patch)
treeee5c5ce4a8d843106d4234eecbe10966993b3797
parent27014bbf513ebb2dde143ebd745283496e7db558 (diff)
downloadrails-69879667dcf4494915f1b9d826f17856bff11887.tar.gz
rails-69879667dcf4494915f1b9d826f17856bff11887.tar.bz2
rails-69879667dcf4494915f1b9d826f17856bff11887.zip
Fix a reference
-rw-r--r--activesupport/lib/active_support/hash_with_indifferent_access.rb2
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