aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/constant_autoloading_and_reloading.md
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2014-12-16 11:38:53 +0100
committerJon Atack <jon@atack.com>2014-12-16 11:38:53 +0100
commit1f5c8130c4eb29d8a60db2a9adbbdf34c28dc8a2 (patch)
tree4f09e8b8199892d2cbeb6e1809c7c6f9cd90df5f /guides/source/constant_autoloading_and_reloading.md
parentd9d5e3f3314193baf80705fe5f1236697e565959 (diff)
downloadrails-1f5c8130c4eb29d8a60db2a9adbbdf34c28dc8a2.tar.gz
rails-1f5c8130c4eb29d8a60db2a9adbbdf34c28dc8a2.tar.bz2
rails-1f5c8130c4eb29d8a60db2a9adbbdf34c28dc8a2.zip
Improve grammar
[skip ci]
Diffstat (limited to 'guides/source/constant_autoloading_and_reloading.md')
-rw-r--r--guides/source/constant_autoloading_and_reloading.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/constant_autoloading_and_reloading.md b/guides/source/constant_autoloading_and_reloading.md
index 9c822a7f01..effa66f19c 100644
--- a/guides/source/constant_autoloading_and_reloading.md
+++ b/guides/source/constant_autoloading_and_reloading.md
@@ -949,8 +949,8 @@ end
require_dependency ‘square’
```
-Only the leaves that are **at least grandchildren** have to be loaded that
-way. Direct subclasses do not need to be preloaded and, if the hierarchy is
+Only the leaves that are **at least grandchildren** need to be loaded this
+way. Direct subclasses do not need to be preloaded. If the hierarchy is
deeper, intermediate classes will be autoloaded recursively from the bottom
because their constant will appear in the class definitions as superclass.