aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbdelkader Boudih <terminale@gmail.com>2015-01-17 15:34:57 +0000
committerAbdelkader Boudih <terminale@gmail.com>2015-01-17 15:34:57 +0000
commit49c9d7939b28a52153b621a4c7ce0782b0698965 (patch)
treeabae84ea0fba8496238fe8ca0d9d0c71f3454407
parentb7dc096c9975088b8d7c12eb90bea499fc69b371 (diff)
parent03d049cca2ae0cd39a25fa0beb0548d3657f6689 (diff)
downloadrails-49c9d7939b28a52153b621a4c7ce0782b0698965.tar.gz
rails-49c9d7939b28a52153b621a4c7ce0782b0698965.tar.bz2
rails-49c9d7939b28a52153b621a4c7ce0782b0698965.zip
Merge pull request #18564 from yui-knk/fix/autoload2
[ci skip] Change to the passive voice
-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 f32714f893..115074db3a 100644
--- a/guides/source/autoloading_and_reloading_constants.md
+++ b/guides/source/autoloading_and_reloading_constants.md
@@ -236,7 +236,7 @@ end
```
`Post` is not syntax for a class. Rather, `Post` is a regular Ruby constant. If
-all is good, the constant evaluates to an object that responds to `all`.
+all is good, the constant is evaluated to an object that responds to `all`.
That is why we talk about *constant* autoloading, Rails has the ability to
load constants on the fly.