aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/per_thread_registry.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/per_thread_registry.rb')
-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 79ff61ca90..e9499600a4 100644
--- a/activesupport/lib/active_support/per_thread_registry.rb
+++ b/activesupport/lib/active_support/per_thread_registry.rb
@@ -34,7 +34,7 @@ module ActiveSupport
module PerThreadRegistry
protected
- def method_missing(name, *args, &block)
+ def method_missing(name, *args, &block) # :nodoc:
# Caches the method definition as a singleton method of the receiver.
singleton_class.class_eval do
define_method(name) do |*a, &b|