diff options
author | Jon Atack <jon@atack.com> | 2014-12-16 11:21:40 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2014-12-16 11:21:40 +0100 |
commit | de75713a73d83fa5405fcf5a3f6f218c4578195e (patch) | |
tree | 1bd02b38954ab466df25e78469d80f4e3be82f69 | |
parent | 41dc7fd650b0fcaf8f05f895aab13febac0739ec (diff) | |
download | rails-de75713a73d83fa5405fcf5a3f6f218c4578195e.tar.gz rails-de75713a73d83fa5405fcf5a3f6f218c4578195e.tar.bz2 rails-de75713a73d83fa5405fcf5a3f6f218c4578195e.zip |
Constant autoload grammar fix
[skip ci]
-rw-r--r-- | guides/source/constant_autoloading_and_reloading.md | 4 |
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 94546c7bb2..9c822a7f01 100644 --- a/guides/source/constant_autoloading_and_reloading.md +++ b/guides/source/constant_autoloading_and_reloading.md @@ -580,8 +580,8 @@ file is loaded. If the file actually defines `Post` all is fine, otherwise ### Qualified References When a qualified constant is missing Rails does not look for it in the parent -namespaces. But there's a caveat: unfortunately, when a constant is missing -Rails is not able to say if the trigger was a relative or qualified reference. +namespaces. But there is a caveat: When a constant is missing, Rails is +unable to tell if the trigger was a relative reference or a qualified one. For example, consider |