aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-09-28 17:02:22 -0400
committerGitHub <noreply@github.com>2016-09-28 17:02:22 -0400
commitc93b80d53d6e6bf669cc7924335ec7a0bcb2298e (patch)
treee3465c35a970d751bc8fe87c5ef77e27551d2ad1 /activesupport/lib
parent19dcf0a210fe28b788a597bc6f56eae828b4efb2 (diff)
parent05eb2c08357664ba18c33378fd6110989ed7edca (diff)
downloadrails-c93b80d53d6e6bf669cc7924335ec7a0bcb2298e.tar.gz
rails-c93b80d53d6e6bf669cc7924335ec7a0bcb2298e.tar.bz2
rails-c93b80d53d6e6bf669cc7924335ec7a0bcb2298e.zip
Merge pull request #26654 from Neodelf/activesupport_1
[ci skip] Remove not necessary whitespace
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/core_ext/class/attribute.rb2
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.
#