diff options
author | pavlos <paul.hieromnimon@gmail.com> | 2015-12-01 13:24:45 -0800 |
---|---|---|
committer | pavlos <paul.hieromnimon@gmail.com> | 2015-12-01 13:24:45 -0800 |
commit | 6861a1d9445f471029f63b53e853b6aaa26769ed (patch) | |
tree | 548103d91719f8e0d5ab7b6ba24e4a0e1d90c5e3 /guides | |
parent | c403edf9c150693df2477ddcf23dcd52e9bef9ff (diff) | |
download | rails-6861a1d9445f471029f63b53e853b6aaa26769ed.tar.gz rails-6861a1d9445f471029f63b53e853b6aaa26769ed.tar.bz2 rails-6861a1d9445f471029f63b53e853b6aaa26769ed.zip |
Update autoloading_and_reloading_constants.md
Fixed a typo
Diffstat (limited to 'guides')
-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 5126d87bee..a39b975c3e 100644 --- a/guides/source/autoloading_and_reloading_constants.md +++ b/guides/source/autoloading_and_reloading_constants.md @@ -685,7 +685,7 @@ to trigger the heuristic is defined in the conflicting place. ### Automatic Modules When a module acts as a namespace, Rails does not require the application to -defines a file for it, a directory matching the namespace is enough. +define a file for it, a directory matching the namespace is enough. Suppose an application has a back office whose controllers are stored in `app/controllers/admin`. If the `Admin` module is not yet loaded when |