diff options
author | Xavier Noria <fxn@hashref.com> | 2009-05-31 23:24:00 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2009-05-31 23:25:25 +0200 |
commit | 680303107addb405288738fe4eeb894f98b9ccb5 (patch) | |
tree | 7ccd887f7fe7a392598ef55e0aa7efdb9667c7ce /railties | |
parent | a6584bba749fe5ba3dc26117a09fc9db81a3f268 (diff) | |
download | rails-680303107addb405288738fe4eeb894f98b9ccb5.tar.gz rails-680303107addb405288738fe4eeb894f98b9ccb5.tar.bz2 rails-680303107addb405288738fe4eeb894f98b9ccb5.zip |
AS guide: small rewording
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/active_support_overview.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/active_support_overview.textile b/railties/guides/source/active_support_overview.textile index 0d9753cb84..64c66b4f46 100644 --- a/railties/guides/source/active_support_overview.textile +++ b/railties/guides/source/active_support_overview.textile @@ -143,7 +143,7 @@ Hash # => NameError: uninitialized constant Hash Dir # => NameError: uninitialized constant Dir </ruby> -More specifically, +remove_class+ attempts to remove constants with the same name as the passed class objects from their parent modules. So technically this method does not guarantee the class objects themselves are not indeed valid and still alive somewhere: +More specifically, +remove_class+ attempts to remove constants with the same name as the passed class objects from their parent modules. So technically this method does not guarantee the class objects themselves are not still valid and alive somewhere after the method call: <ruby> module M |