aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/reloadable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/reloadable.rb')
-rw-r--r--activesupport/lib/active_support/reloadable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/reloadable.rb b/activesupport/lib/active_support/reloadable.rb
index c71b2fa4bd..3fd13e3d0f 100644
--- a/activesupport/lib/active_support/reloadable.rb
+++ b/activesupport/lib/active_support/reloadable.rb
@@ -19,7 +19,7 @@ module Reloadable
# Captures the common pattern where a base class should not be reloaded,
# but its subclasses should be.
- module OnlySubclasses
+ module Subclasses
def self.included(base) #nodoc:
base.send :include, Reloadable
(class << base; self; end).send(:define_method, :reloadable?) do