1
0
Fork 0
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:
Nat Morcos 2021-03-04 18:15:27 -05:00 committed by GitHub
parent ae128a363c
commit 08145c2514
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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