aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/autoloading_and_reloading_constants.md
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2015-01-17 23:52:53 +0900
committeryui-knk <spiketeika@gmail.com>2015-01-17 23:52:53 +0900
commit03d049cca2ae0cd39a25fa0beb0548d3657f6689 (patch)
treeabae84ea0fba8496238fe8ca0d9d0c71f3454407 /guides/source/autoloading_and_reloading_constants.md
parentb7dc096c9975088b8d7c12eb90bea499fc69b371 (diff)
downloadrails-03d049cca2ae0cd39a25fa0beb0548d3657f6689.tar.gz
rails-03d049cca2ae0cd39a25fa0beb0548d3657f6689.tar.bz2
rails-03d049cca2ae0cd39a25fa0beb0548d3657f6689.zip
[ci skip] Change to the passive voice
Diffstat (limited to 'guides/source/autoloading_and_reloading_constants.md')
-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.