diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-01-30 08:32:31 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-01-30 08:32:31 +0100 |
commit | 4a0046164de1ee7422911ba9ec0ed4c13cfe7e69 (patch) | |
tree | 9914a35b5469a2c80e7fcfecd49692aa058da8df | |
parent | 455e663c667a3c97e37b71b52100a965b384f2f7 (diff) | |
parent | dc6f5cb0ddfe3901a83fa980b7399f4b43d6a22a (diff) | |
download | rails-4a0046164de1ee7422911ba9ec0ed4c13cfe7e69.tar.gz rails-4a0046164de1ee7422911ba9ec0ed4c13cfe7e69.tar.bz2 rails-4a0046164de1ee7422911ba9ec0ed4c13cfe7e69.zip |
Merge pull request #18736 from nonsensery/autoload-guide-grammar-fix
Fix grammar in Qualified Constants section [ci skip]
-rw-r--r-- | guides/source/autoloading_and_reloading_constants.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/autoloading_and_reloading_constants.md b/guides/source/autoloading_and_reloading_constants.md index 51c46d707c..f0ef03f0ce 100644 --- a/guides/source/autoloading_and_reloading_constants.md +++ b/guides/source/autoloading_and_reloading_constants.md @@ -324,7 +324,7 @@ relative: `::Billing::Invoice`. That would force `Billing` to be looked up only as a top-level constant. `Invoice` on the other hand is qualified by `Billing` and we are going to see -its resolution next. Let's call *parent* to that qualifying class or module +its resolution next. Let's define *parent* to be that qualifying class or module object, that is, `Billing` in the example above. The algorithm for qualified constants goes like this: |