Merge pull request #41615 from NatMorcos/patch-1

[ci skip] Fix typos in Rails autoloading guide
This commit is contained in:
Jonathan Hefner 2021-03-04 17:23:38 -06:00 committed by GitHub
commit fdba9304c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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.