diff options
author | Andrey Molchanov <neodelf@gmail.com> | 2016-09-18 17:50:19 +0300 |
---|---|---|
committer | Andrey Molchanov <neodelf@gmail.com> | 2016-09-28 23:24:26 +0300 |
commit | 05eb2c08357664ba18c33378fd6110989ed7edca (patch) | |
tree | d201d6e8c7236c56c44f4c3f3d4b87e1b92b16ae /activesupport | |
parent | db88160eff3a319c2b127cd4ea0281d7ac5473dc (diff) | |
download | rails-05eb2c08357664ba18c33378fd6110989ed7edca.tar.gz rails-05eb2c08357664ba18c33378fd6110989ed7edca.tar.bz2 rails-05eb2c08357664ba18c33378fd6110989ed7edca.zip |
[ci skip] Remove not necessary whitespace
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/class/attribute.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/class/attribute.rb b/activesupport/lib/active_support/core_ext/class/attribute.rb index 9b4a9a9992..ba422f9071 100644 --- a/activesupport/lib/active_support/core_ext/class/attribute.rb +++ b/activesupport/lib/active_support/core_ext/class/attribute.rb @@ -20,7 +20,7 @@ class Class # Base.setting # => true # # In the above case as long as Subclass does not assign a value to setting - # by performing <tt>Subclass.setting = _something_ </tt>, <tt>Subclass.setting</tt> + # by performing <tt>Subclass.setting = _something_</tt>, <tt>Subclass.setting</tt> # would read value assigned to parent class. Once Subclass assigns a value then # the value assigned by Subclass would be returned. # |