File tree Expand file tree Collapse file tree 3 files changed +1
-7
lines changed
actionpack/lib/abstract_controller
activemodel/lib/active_model Expand file tree Collapse file tree 3 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,6 @@ module AbstractController
18
18
# * <tt>skip_after_action</tt>
19
19
# * <tt>skip_around_action</tt>
20
20
# * <tt>skip_before_action</tt>
21
- #
22
- # NOTE: Calling the same callback multiple times will overwrite previous callback definitions.
23
- #
24
21
module Callbacks
25
22
extend ActiveSupport ::Concern
26
23
Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ module ActiveJob
15
15
# * <tt>before_perform</tt>
16
16
# * <tt>around_perform</tt>
17
17
# * <tt>after_perform</tt>
18
- #
19
- # NOTE: Calling the same callback multiple times will overwrite previous callback definitions.
20
- #
21
18
module Callbacks
22
19
extend ActiveSupport ::Concern
23
20
include ActiveSupport ::Callbacks
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ module ActiveModel
60
60
# Would only create the +after_create+ and +before_create+ callback methods in
61
61
# your class.
62
62
#
63
- # NOTE: Calling the same callback multiple times will overwrite previous callback definitions.
63
+ # NOTE: Defining the same callback multiple times will overwrite previous callback definitions.
64
64
#
65
65
module Callbacks
66
66
def self . extended ( base ) # :nodoc:
You can’t perform that action at this time.
0 commit comments