aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-01-30 08:32:31 +0100
committerYves Senn <yves.senn@gmail.com>2015-01-30 08:32:31 +0100
commit4a0046164de1ee7422911ba9ec0ed4c13cfe7e69 (patch)
tree9914a35b5469a2c80e7fcfecd49692aa058da8df /guides/source
parent455e663c667a3c97e37b71b52100a965b384f2f7 (diff)
parentdc6f5cb0ddfe3901a83fa980b7399f4b43d6a22a (diff)
downloadrails-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]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/autoloading_and_reloading_constants.md2
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: