diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-12-05 02:17:52 -0800 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-12-05 02:17:52 -0800 |
commit | 4af9be089c345c58b6eae462226ca7190bc6bb73 (patch) | |
tree | ac6b4decd50097a5b634720b56f6396146574016 /activesupport/lib/active_support/configurable.rb | |
parent | 129eac024382c7fbdad2007e86cf25778d5f6787 (diff) | |
parent | 019df9887519701b321c668c1d27d5c0c26fee7a (diff) | |
download | rails-4af9be089c345c58b6eae462226ca7190bc6bb73.tar.gz rails-4af9be089c345c58b6eae462226ca7190bc6bb73.tar.bz2 rails-4af9be089c345c58b6eae462226ca7190bc6bb73.zip |
Merge pull request #8421 from claudiob/remove_unicode_blanks
Replace comments' non-breaking spaces with spaces [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/configurable.rb')
-rw-r--r-- | activesupport/lib/active_support/configurable.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/configurable.rb b/activesupport/lib/active_support/configurable.rb index 16d2a6a290..e0d39d509f 100644 --- a/activesupport/lib/active_support/configurable.rb +++ b/activesupport/lib/active_support/configurable.rb @@ -38,7 +38,7 @@ module ActiveSupport end # Allows you to add shortcut so that you don't have to refer to attribute - # through config. Also look at the example for config to contrast. + # through config. Also look at the example for config to contrast. # # Defines both class and instance config accessors. # @@ -75,7 +75,7 @@ module ActiveSupport # end # # User.allowed_access = false - # User.allowed_access # => false + # User.allowed_access # => false # # User.new.allowed_access = true # => NoMethodError # User.new.allowed_access # => NoMethodError @@ -88,7 +88,7 @@ module ActiveSupport # end # # User.allowed_access = false - # User.allowed_access # => false + # User.allowed_access # => false # # User.new.allowed_access = true # => NoMethodError # User.new.allowed_access # => NoMethodError |