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/callbacks.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/callbacks.rb')
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index 8199f431f1..3a8353857e 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -14,7 +14,7 @@ module ActiveSupport # Mixing in this module allows you to define the events in the object's # lifecycle that will support callbacks (via +ClassMethods.define_callbacks+), # set the instance methods, procs, or callback objects to be called (via - # +ClassMethods.set_callback+), and run the installed callbacks at the + # +ClassMethods.set_callback+), and run the installed callbacks at the # appropriate times (via +run_callbacks+). # # Three kinds of callbacks are supported: before callbacks, run before a @@ -382,7 +382,7 @@ module ActiveSupport # set_callback :save, :before_meth # # The callback can specified as a symbol naming an instance method; as a - # proc, lambda, or block; as a string to be instance evaluated; or as an + # proc, lambda, or block; as a string to be instance evaluated; or as an # object that responds to a certain method determined by the <tt>:scope</tt> # argument to +define_callback+. # |