aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activesupport/lib/active_support/callbacks.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb
index 893c2500d7..21f4125a94 100644
--- a/activesupport/lib/active_support/callbacks.rb
+++ b/activesupport/lib/active_support/callbacks.rb
@@ -136,7 +136,7 @@ module ActiveSupport
if @_is_object_filter
_filter_matches = @filter.to_s.start_with?(_method_name_for_object_filter(_kind, _filter, false))
else
- _filter_matches = (@filter == _filter)
+ _filter_matches = (@filter == _filter)
end
@kind == _kind && _filter_matches
@@ -198,7 +198,7 @@ module ActiveSupport
# Compile around filters with conditions into proxy methods
# that contain the conditions.
#
- # For `set_callback :save, :around, :filter_name, if: :condition':
+ # For `set_callback :save, :around, :filter_name, if: :condition`:
#
# def _conditional_callback_save_17
# if condition