aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-06-24 17:06:07 -0400
committerGitHub <noreply@github.com>2016-06-24 17:06:07 -0400
commitc1064b0c88874f38c7469892a9ac46338c1b6c32 (patch)
tree4d2e9cdfdccbfd2a41209c2c673fb0507edd3b4c /activesupport
parent3b72975dba4f4e52398358f831c01a8cb564fefa (diff)
parent64cabcd77ae128b7afe5bc98c83cad84882c9669 (diff)
downloadrails-c1064b0c88874f38c7469892a9ac46338c1b6c32.tar.gz
rails-c1064b0c88874f38c7469892a9ac46338c1b6c32.tar.bz2
rails-c1064b0c88874f38c7469892a9ac46338c1b6c32.zip
Merge pull request #25517 from alexcameron89/per_thread_registry
[ci skip] Add link reference in ActiveSupport::PerThreadRegistry
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/per_thread_registry.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/per_thread_registry.rb b/activesupport/lib/active_support/per_thread_registry.rb
index 88e2b12cc7..18ca951372 100644
--- a/activesupport/lib/active_support/per_thread_registry.rb
+++ b/activesupport/lib/active_support/per_thread_registry.rb
@@ -1,7 +1,7 @@
require 'active_support/core_ext/module/delegation'
module ActiveSupport
- # NOTE: This approach has been deprecated for end-user code in favor of thread_mattr_accessor and friends.
+ # NOTE: This approach has been deprecated for end-user code in favor of {thread_mattr_accessor}[rdoc-ref:Module#thread_mattr_accessor] and friends.
# Please use that approach instead.
#
# This module is used to encapsulate access to thread local variables.