1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #18564 from yui-knk/fix/autoload2

[ci skip] Change to the passive voice
This commit is contained in:
Abdelkader Boudih 2015-01-17 15:34:57 +00:00
commit 49c9d7939b

View file

@ -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.