diff options
author | Yuri Kasperovich <y.kasperovich@dev1team.net> | 2015-11-09 23:55:16 +0300 |
---|---|---|
committer | Yuri Kasperovich <y.kasperovich@dev1team.net> | 2015-11-09 23:55:16 +0300 |
commit | f5ec4138bf658ed0f45d3242aa0144a2ded4939f (patch) | |
tree | bb4f75b83c68d43532be86ddfc6f11f0535ebe7e /activesupport/lib/active_support | |
parent | 16214d1108c31174c94503caced3855b0f6bad95 (diff) | |
download | rails-f5ec4138bf658ed0f45d3242aa0144a2ded4939f.tar.gz rails-f5ec4138bf658ed0f45d3242aa0144a2ded4939f.tar.bz2 rails-f5ec4138bf658ed0f45d3242aa0144a2ded4939f.zip |
Minor fix in Module#mattr_reader documentation
Diffstat (limited to 'activesupport/lib/active_support')
-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 |