diff options
author | Yuri Kasperovich <y.kasperovich@dev1team.net> | 2015-11-09 23:55:16 +0300 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2015-11-11 07:08:20 +0100 |
commit | cff8b4951fd337075bd6079fa1a679428312baad (patch) | |
tree | 825531e70dc24397bc928251fc48dd43fe3c1091 | |
parent | 8c9e95f97056dc91d198a5974431e4d5b8be325e (diff) | |
download | rails-cff8b4951fd337075bd6079fa1a679428312baad.tar.gz rails-cff8b4951fd337075bd6079fa1a679428312baad.tar.bz2 rails-cff8b4951fd337075bd6079fa1a679428312baad.zip |
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 |