Skip to content

Commit 4500ebb

Browse files
authored
Merge pull request rails#37958 from yoones/fix_typo_in_autoloading_guide
Fixes typo in autoloading_and_reloading_constants guide
2 parents 1421f70 + 6e6019b commit 4500ebb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/source/autoloading_and_reloading_constants.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ INFO. Autoload paths are called _root directories_ in Zeitwerk documentation, bu
9090

9191
Within an autoload path, file names must match the constants they define as documented [here](https://github.com/fxn/zeitwerk#file-structure).
9292

93-
By default, the autoload paths of an application consist of all the subdirectories of `app` that exist when the application boots ---except for `assets`, `javascripts`, `views`,--- plus the autoload paths of engines it might depend on.
93+
By default, the autoload paths of an application consist of all the subdirectories of `app` that exist when the application boots ---except for `assets`, `javascript`, `views`,--- plus the autoload paths of engines it might depend on.
9494

9595
For example, if `UsersHelper` is implemented in `app/helpers/users_helper.rb`, the module is autoloadable, you do not need (and should not write) a `require` call for it:
9696

0 commit comments

Comments
 (0)