mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix typo in Rails autoloading guide
A missing word made the sentence difficult to understand. This PR adds the missing word.
This commit is contained in:
parent
ae128a363c
commit
08145c2514
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ $ bin/rails runner 'p UsersHelper'
|
|||
UsersHelper
|
||||
```
|
||||
|
||||
Autoload paths automatically pick any custom directories under `app`. For example, if your application has `app/presenters`, or `app/services`, etc., they are added to autoload paths.
|
||||
Autoload paths automatically pick up any custom directories under `app`. For example, if your application has `app/presenters`, or `app/services`, etc., they are added to autoload paths.
|
||||
|
||||
The array of autoload paths can be extended by mutating `config.autoload_paths`, in `config/application.rb`, but nowadays this is discouraged.
|
||||
|
||||
|
|
Loading…
Reference in a new issue