aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@gmail.com>2014-12-16 08:55:13 -0500
committerEileen M. Uchitelle <eileencodes@gmail.com>2014-12-16 08:55:13 -0500
commitf5a4ca323d1c47fb6330bb4f4c9ac5e371649d83 (patch)
tree4f09e8b8199892d2cbeb6e1809c7c6f9cd90df5f /guides
parentd9d5e3f3314193baf80705fe5f1236697e565959 (diff)
parent1f5c8130c4eb29d8a60db2a9adbbdf34c28dc8a2 (diff)
downloadrails-f5a4ca323d1c47fb6330bb4f4c9ac5e371649d83.tar.gz
rails-f5a4ca323d1c47fb6330bb4f4c9ac5e371649d83.tar.bz2
rails-f5a4ca323d1c47fb6330bb4f4c9ac5e371649d83.zip
Merge pull request #18051 from jonatack/patch-14
Improve grammar
Diffstat (limited to 'guides')
-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.