aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2015-12-17 13:10:51 -0200
committerRafael França <rafaelmfranca@gmail.com>2015-12-17 13:10:51 -0200
commit9efb1661adf25747ccdea0de387d00f71f37b21e (patch)
tree3223d7e7a60eed2eb9f8d42d52e124347419e63f /activesupport
parent8b66b7bae3c5d564e90cbaf44725bdeae0e31bfe (diff)
parentdee03ae028a33935ea09a35bc6599cbad45f425c (diff)
downloadrails-9efb1661adf25747ccdea0de387d00f71f37b21e.tar.gz
rails-9efb1661adf25747ccdea0de387d00f71f37b21e.tar.bz2
rails-9efb1661adf25747ccdea0de387d00f71f37b21e.zip
Merge pull request #22636 from nateberkopec/fix-dhh-typo
Fix typo in thread_mattr_accessor doco [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb b/activesupport/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb
index 36fe52cea1..34ba014856 100644
--- a/activesupport/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb
+++ b/activesupport/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb
@@ -111,7 +111,7 @@ class Module
# class Customer < Account
# end
#
- # Customer.user = "CHH"
+ # Customer.user = "DHH"
# Account.user # => "DHH"
#
# To opt out of the instance writer method, pass <tt>instance_writer: false</tt>.