aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorakihiro17 <coolwizard11@gmail.com>2015-08-12 23:53:10 +0900
committerakihiro17 <coolwizard11@gmail.com>2015-08-12 23:53:10 +0900
commit93dc0b43d1fae1aa34032f9cab8f0822ea33b54d (patch)
tree97ffa1626083fd84ea42501908149d7db1193a16 /activesupport
parent9dbccf02c5ab5dcda2ff11eb9f840a5964dc9637 (diff)
downloadrails-93dc0b43d1fae1aa34032f9cab8f0822ea33b54d.tar.gz
rails-93dc0b43d1fae1aa34032f9cab8f0822ea33b54d.tar.bz2
rails-93dc0b43d1fae1aa34032f9cab8f0822ea33b54d.zip
[ci skip] Fix rdoc markup
Diffstat (limited to 'activesupport')
-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 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