Skip to content

Commit 50189c4

Browse files
Simplify reference links [ci-skip]
These references will be properly linked even without the fully qualified module name.
1 parent 2c371c6 commit 50189c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

activesupport/lib/active_support/deprecation/deprecators.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,31 +56,31 @@ def debug=(debug)
5656
# Sets the deprecation warning behavior for all deprecators in this
5757
# collection.
5858
#
59-
# See ActiveSupport::Deprecation::Behavior#behavior=.
59+
# See ActiveSupport::Deprecation#behavior=.
6060
def behavior=(behavior)
6161
set_option(:behavior, behavior)
6262
end
6363

6464
# Sets the disallowed deprecation warning behavior for all deprecators in
6565
# this collection.
6666
#
67-
# See ActiveSupport::Deprecation::Behavior#disallowed_behavior=.
67+
# See ActiveSupport::Deprecation#disallowed_behavior=.
6868
def disallowed_behavior=(disallowed_behavior)
6969
set_option(:disallowed_behavior, disallowed_behavior)
7070
end
7171

7272
# Sets the disallowed deprecation warnings for all deprecators in this
7373
# collection.
7474
#
75-
# See ActiveSupport::Deprecation::Disallowed#disallowed_warnings=.
75+
# See ActiveSupport::Deprecation#disallowed_warnings=.
7676
def disallowed_warnings=(disallowed_warnings)
7777
set_option(:disallowed_warnings, disallowed_warnings)
7878
end
7979

8080
# Silences all deprecators in this collection for the duration of the
8181
# given block.
8282
#
83-
# See ActiveSupport::Deprecation::Reporting#silence.
83+
# See ActiveSupport::Deprecation#silence.
8484
def silence(&block)
8585
each { |deprecator| deprecator.begin_silence }
8686
block.call

0 commit comments

Comments
 (0)