aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/active_support_core_extensions.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/active_support_core_extensions.textile b/railties/guides/source/active_support_core_extensions.textile
index b41b16b728..398d2b2392 100644
--- a/railties/guides/source/active_support_core_extensions.textile
+++ b/railties/guides/source/active_support_core_extensions.textile
@@ -212,7 +212,7 @@ String.new.singleton_class # => #<Class:#<String:0x17a1d1c>>
WARNING: Fixnums and symbols have no singleton classes, +singleton_class+
raises +TypeError+ on them. Moreover, the singleton classes of +nil+, +true+, and +false+, are +NilClass+, +TrueClass+, and +FalseClass+, respectively.
-NOTE: Defined in +active_support/core_ext/object/singleton_class.rb+.
+NOTE: Defined in +active_support/core_ext/kernel/singleton_class.rb+.
h4. +class_eval(*args, &block)+
@@ -233,7 +233,7 @@ class Proc
end
</ruby>
-NOTE: Defined in +active_support/core_ext/object/singleton_class.rb+.
+NOTE: Defined in +active_support/core_ext/kernel/singleton_class.rb+.
h4. +acts_like?(duck)+