aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2019-05-14 17:49:34 +0200
committerXavier Noria <fxn@hashref.com>2019-05-14 17:50:22 +0200
commita2708473b150b30a00c80d64f57a8c4b41a32fcc (patch)
tree580371a0d28ba8d44998c3572f5e6e1afab46073 /guides
parentee6ead86b85346755413a58539a1e1f734b72bed (diff)
downloadrails-a2708473b150b30a00c80d64f57a8c4b41a32fcc.tar.gz
rails-a2708473b150b30a00c80d64f57a8c4b41a32fcc.tar.bz2
rails-a2708473b150b30a00c80d64f57a8c4b41a32fcc.zip
edit tweaks to recent patch in configuring guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index 00f43777a8..ae720e6a05 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -157,9 +157,10 @@ defaults to `:debug` for all environments. The available log levels are: `:debug
* `config.time_zone` sets the default time zone for the application and enables time zone awareness for Active Record.
-* `config.autoloader` sets the autoloading modes. This option defaults to `:zeitwerk` if `6.0` is specified in `config.load_defaults`. Can use the classic autoloader by specifying `:classic` after the line that loads` load_defaults `.
+* `config.autoloader` sets the autoloading mode. This option defaults to `:zeitwerk` if `6.0` is specified in `config.load_defaults`. Applications can still use the classic autoloader by setting this value to `:classic` after loading the framework defaults:
```ruby
+ config.load_defaults "6.0"
config.autoloader = :classic
```