diff options
author | akihiro17 <coolwizard11@gmail.com> | 2015-08-12 23:53:10 +0900 |
---|---|---|
committer | akihiro17 <coolwizard11@gmail.com> | 2015-08-12 23:53:10 +0900 |
commit | 93dc0b43d1fae1aa34032f9cab8f0822ea33b54d (patch) | |
tree | 97ffa1626083fd84ea42501908149d7db1193a16 /activesupport/lib | |
parent | 9dbccf02c5ab5dcda2ff11eb9f840a5964dc9637 (diff) | |
download | rails-93dc0b43d1fae1aa34032f9cab8f0822ea33b54d.tar.gz rails-93dc0b43d1fae1aa34032f9cab8f0822ea33b54d.tar.bz2 rails-93dc0b43d1fae1aa34032f9cab8f0822ea33b54d.zip |
[ci skip] Fix rdoc markup
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 c5d35b84f0..0371f760b0 100644 --- a/activesupport/lib/active_support/hash_with_indifferent_access.rb +++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb @@ -92,7 +92,7 @@ module ActiveSupport # hash = ActiveSupport::HashWithIndifferentAccess.new # hash[:key] = 'value' # - # This value can be later fetched using either +:key+ or +'key'+. + # This value can be later fetched using either +:key+ or <tt>'key'</tt>. def []=(key, value) regular_writer(convert_key(key), convert_value(value, for: :assignment)) end |