aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorfatkodima <fatkodima123@gmail.com>2018-01-03 19:51:07 +0200
committerfatkodima <fatkodima123@gmail.com>2018-01-03 19:53:51 +0200
commiteb44c91361a75311003a8b2e8991e91d2544deaf (patch)
tree3cbac94860626497a8de35ab072abd416b47d8e5 /guides
parentdbff1cee55a13ec7b0f135618555c3714bfd597b (diff)
downloadrails-eb44c91361a75311003a8b2e8991e91d2544deaf.tar.gz
rails-eb44c91361a75311003a8b2e8991e91d2544deaf.tar.bz2
rails-eb44c91361a75311003a8b2e8991e91d2544deaf.zip
Move `config.action_view.cache_template_loading` to proper section in configuring.md [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/configuring.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index b1e472bb74..1668f9e81a 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -66,8 +66,6 @@ These configuration methods are to be called on a `Rails::Railtie` object, such
* `config.cache_classes` controls whether or not application classes and modules should be reloaded on each request. Defaults to `false` in development mode, and `true` in test and production modes.
-* `config.action_view.cache_template_loading` controls whether or not templates should be reloaded on each request. Defaults to whatever is set for `config.cache_classes`.
-
* `config.beginning_of_week` sets the default beginning of week for the
application. Accepts a valid week day symbol (e.g. `:monday`).
@@ -538,6 +536,8 @@ Defaults to `'signed cookie'`.
`config.action_view` includes a small number of configuration settings:
+* `config.action_view.cache_template_loading` controls whether or not templates should be reloaded on each request. Defaults to whatever is set for `config.cache_classes`.
+
* `config.action_view.field_error_proc` provides an HTML generator for displaying errors that come from Active Model. The default is
```ruby