diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2015-11-09 23:03:51 +0100 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2015-11-09 23:03:51 +0100 |
commit | 8d7f0a66c623aa294039032e9e928e88cf3db956 (patch) | |
tree | bb4f75b83c68d43532be86ddfc6f11f0535ebe7e | |
parent | 16214d1108c31174c94503caced3855b0f6bad95 (diff) | |
parent | f5ec4138bf658ed0f45d3242aa0144a2ded4939f (diff) | |
download | rails-8d7f0a66c623aa294039032e9e928e88cf3db956.tar.gz rails-8d7f0a66c623aa294039032e9e928e88cf3db956.tar.bz2 rails-8d7f0a66c623aa294039032e9e928e88cf3db956.zip |
Merge pull request #22237 from yukas/patch-1
Minor fix in Module#mattr_reader documentation
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/attribute_accessors.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb b/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb index bf175a8a70..124f90dc0f 100644 --- a/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +++ b/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb @@ -5,7 +5,7 @@ require 'active_support/core_ext/array/extract_options' # attributes. class Module # Defines a class attribute and creates a class and instance reader methods. - # The underlying the class variable is set to +nil+, if it is not previously + # The underlying class variable is set to +nil+, if it is not previously # defined. # # module HairColors |