diff options
author | Abhishek Jain <jainabhishek1610@gmail.com> | 2016-06-03 16:49:21 +0530 |
---|---|---|
committer | Abhishek Jain <jainabhishek1610@gmail.com> | 2016-06-03 19:48:26 +0530 |
commit | f7b850ec9f6036802339e965c8ce74494f731b4a (patch) | |
tree | c4a0c1b4acd71d3e7fb18ea8b754136ac45bf1e8 /activesupport/lib/active_support | |
parent | 082a5158251c6578714132e5c4f71bd39f462d71 (diff) | |
download | rails-f7b850ec9f6036802339e965c8ce74494f731b4a.tar.gz rails-f7b850ec9f6036802339e965c8ce74494f731b4a.tar.bz2 rails-f7b850ec9f6036802339e965c8ce74494f731b4a.zip |
[skip ci] Fix grammar
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb | 4 |
1 files changed, 2 insertions, 2 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 0b3d18301e..045668c207 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 @@ -25,7 +25,7 @@ class Module # end # # => NameError: invalid attribute name: 1_Badname # - # If you want to opt out the creation on the instance reader method, pass + # If you want to opt out of the creation of the instance reader method, pass # <tt>instance_reader: false</tt> or <tt>instance_accessor: false</tt>. # # class Current @@ -65,7 +65,7 @@ class Module # Current.user = "DHH" # Thread.current[:attr_Current_user] # => "DHH" # - # If you want to opt out the instance writer method, pass + # If you want to opt out of the creation of the instance writer method, pass # <tt>instance_writer: false</tt> or <tt>instance_accessor: false</tt>. # # class Current |