diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-07-21 14:11:37 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-07-21 14:12:01 -0300 |
commit | f5d0e3d7605cc05b0fd549d2b89c9d1db48ce093 (patch) | |
tree | 92b8bdc8239bad12634349cb3dcbe2b66e161313 /activesupport/lib | |
parent | f1a317b8e9f249294fc736ed19d0e5894c5e4ce6 (diff) | |
download | rails-f5d0e3d7605cc05b0fd549d2b89c9d1db48ce093.tar.gz rails-f5d0e3d7605cc05b0fd549d2b89c9d1db48ce093.tar.bz2 rails-f5d0e3d7605cc05b0fd549d2b89c9d1db48ce093.zip |
+"foo"+ doesn't generate code tag [ci skip]
Diffstat (limited to 'activesupport/lib')
-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 c807c96da6..5fd20673d8 100644 --- a/activesupport/lib/active_support/hash_with_indifferent_access.rb +++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb @@ -1,7 +1,7 @@ require 'active_support/core_ext/hash/keys' module ActiveSupport - # Implements a hash where keys +:foo+ and +"foo"+ are considered to be the same. + # Implements a hash where keys <tt>:foo</tt> and <tt>"foo"</tt> are considered to be the same. # # rgb = ActiveSupport::HashWithIndifferentAccess.new # |