diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-10-26 19:10:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-26 19:10:27 -0400 |
commit | 58ff03d9fccc2aa665004d280f98c810b41fee1c (patch) | |
tree | dc434df079656816db55eb5f75a8e5a3d1733aeb /guides | |
parent | fa7efca553e325b2aabb087a4eddf4560c356094 (diff) | |
parent | 3db6ca9d0447bbd50ffaaf11d462c982b2a1d871 (diff) | |
download | rails-58ff03d9fccc2aa665004d280f98c810b41fee1c.tar.gz rails-58ff03d9fccc2aa665004d280f98c810b41fee1c.tar.bz2 rails-58ff03d9fccc2aa665004d280f98c810b41fee1c.zip |
Merge pull request #26906 from y-yagi/fix_initializer_name
fix initializer name [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 79ded19c27..18416a60ff 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -1181,7 +1181,7 @@ Below is a comprehensive list of all the initializers found in Rails in the orde * `finisher_hook`: Provides a hook for after the initialization of process of the application is complete, as well as running all the `config.after_initialize` blocks for the application, railties and engines. -* `set_routes_reloader`: Configures Action Dispatch to reload the routes file using `ActionDispatch::Callbacks.to_prepare`. +* `set_routes_reloader_hook`: Configures Action Dispatch to reload the routes file using `ActionDispatch::Callbacks.to_prepare`. * `disable_dependency_loading`: Disables the automatic dependency loading if the `config.eager_load` is set to `true`. |