aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorYauheni Dakuka <yauheni.dakuka@gmail.com>2018-02-12 09:15:12 +0300
committerYauheni Dakuka <yauheni.dakuka@gmail.com>2018-02-12 09:31:24 +0300
commit27e5c76a77cbca90836ad4fc3a861d9c47cf8588 (patch)
treea6894325b59329037f11c6e7fa4f3f095dc73d06 /guides
parentcfcb92f9eaf78daefe21335bcabf813842c0ab07 (diff)
downloadrails-27e5c76a77cbca90836ad4fc3a861d9c47cf8588.tar.gz
rails-27e5c76a77cbca90836ad4fc3a861d9c47cf8588.tar.bz2
rails-27e5c76a77cbca90836ad4fc3a861d9c47cf8588.zip
Remove parentheses [ci skip]
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 6d30910ce8..5428b16edc 100644
--- a/guides/source/autoloading_and_reloading_constants.md
+++ b/guides/source/autoloading_and_reloading_constants.md
@@ -476,7 +476,7 @@ How files are autoloaded depends on `eager_load` and `cache_classes` config sett
What is described above are the defaults with a newly generated Rails app. There are multiple ways this can be configured differently (see [Configuring Rails Applications](configuring.html#rails-general-configuration).
). But using `autoload_paths` on its own in the past (before Rails 5) developers might configure `autoload_paths` to add in extra locations (e.g. `lib` which used to be an autoload path list years ago, but no longer is). However this is now discouraged for most purposes, as it is likely to lead to production-only errors. It is possible to add new locations to both `config.eager_load_paths` and `config.autoload_paths` but use at your own risk.
-See also ([Autoloading in the Test Environment](#autoloading-in-the-test-environment).
+See also [Autoloading in the Test Environment](#autoloading-in-the-test-environment).
`config.autoload_paths` is not changeable from environment-specific configuration files.