aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/active_support_overview.textile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-05-31 16:18:42 +0200
committerXavier Noria <fxn@hashref.com>2009-05-31 23:08:05 +0200
commitc78e587e0bb537c71b1c291f4bdc56f1d2e6849a (patch)
tree0a0745bda8ada47352a2c8eaa51dc23da676170c /railties/guides/source/active_support_overview.textile
parent145f182ea192722ad20b76c9230150614f105431 (diff)
downloadrails-c78e587e0bb537c71b1c291f4bdc56f1d2e6849a.tar.gz
rails-c78e587e0bb537c71b1c291f4bdc56f1d2e6849a.tar.bz2
rails-c78e587e0bb537c71b1c291f4bdc56f1d2e6849a.zip
use "Subclasses" in title for coherence with method name
Diffstat (limited to 'railties/guides/source/active_support_overview.textile')
-rw-r--r--railties/guides/source/active_support_overview.textile2
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 7f72ff5186..219c3c5b56 100644
--- a/railties/guides/source/active_support_overview.textile
+++ b/railties/guides/source/active_support_overview.textile
@@ -106,7 +106,7 @@ end
If for whatever reason an application loads the definition of a mailer class and after that sets +ActionMailer::Base.delivery_method+, the mailer class will still see the new value. In addition, the mailer class is able to change the +delivery_method+ without affecting the value in the parent using its own inherited class attribute writer.
-h4. Descendants
+h4. Subclasses
The method +Class#subclasses+ returns the names of all subclasses of a given class as an array of strings. That comprises not only direct subclasses, but all descendants down the hierarchy: