aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2019-07-10 09:03:15 +0200
committerXavier Noria <fxn@hashref.com>2019-07-10 09:03:15 +0200
commit62068c2e19ab75b7e7945e38040af513208228ae (patch)
tree45ed3e81ea67222e4b36c03f54dff3ef01ee482b /guides
parent6e40b131d2c7208e116d267e4b40dcf621f8b442 (diff)
downloadrails-62068c2e19ab75b7e7945e38040af513208228ae.tar.gz
rails-62068c2e19ab75b7e7945e38040af513208228ae.tar.bz2
rails-62068c2e19ab75b7e7945e38040af513208228ae.zip
fixes link [skip ci]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/autoloading_and_reloading_constants.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/autoloading_and_reloading_constants.md b/guides/source/autoloading_and_reloading_constants.md
index 3e1fa47593..444f241afc 100644
--- a/guides/source/autoloading_and_reloading_constants.md
+++ b/guides/source/autoloading_and_reloading_constants.md
@@ -23,7 +23,7 @@ After reading this guide, you will know:
Introduction
------------
-INFO. This guide documents autoloading in `zeitwerk` mode, which is new in Rails 6. If you'd like to read about `classic` mode instead, please check [Autoloading and Reloading Constants (Classic Mode)][autoloading_and_reloading_constants_classic_mode.html].
+INFO. This guide documents autoloading in `zeitwerk` mode, which is new in Rails 6. If you'd like to read about `classic` mode instead, please check [Autoloading and Reloading Constants (Classic Mode)](autoloading_and_reloading_constants_classic_mode.html).
In a normal Ruby program, dependencies need to be loaded by hand. For example, the following controller uses classes `ApplicationController` and `Post`, and normally you'd need to put `require` calls for them: