aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorNate Berkopec <nate.berkopec@gmail.com>2015-12-17 10:09:36 -0500
committerNate Berkopec <nate.berkopec@gmail.com>2015-12-17 10:09:36 -0500
commitdee03ae028a33935ea09a35bc6599cbad45f425c (patch)
tree6ca16e271434a216ee484a4c89a1d40a1c568176 /activesupport
parentbb4a9e22b02bf954865309c5df1d9762af471973 (diff)
downloadrails-dee03ae028a33935ea09a35bc6599cbad45f425c.tar.gz
rails-dee03ae028a33935ea09a35bc6599cbad45f425c.tar.bz2
rails-dee03ae028a33935ea09a35bc6599cbad45f425c.zip
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>.