diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-09-28 18:30:07 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-09-28 18:30:07 -0700 |
commit | 94f63f8337acc09406caee5d3add43fe2f529ff6 (patch) | |
tree | 723edcb1b21b0140edcc266eb76b65c87781006b /guides/source | |
parent | 37c721aa8334ba5a6398c6c323c32d6e6c781fe7 (diff) | |
parent | 6fae1efc5910bb1c6536b0efb3e120b9b27b0657 (diff) | |
download | rails-94f63f8337acc09406caee5d3add43fe2f529ff6.tar.gz rails-94f63f8337acc09406caee5d3add43fe2f529ff6.tar.bz2 rails-94f63f8337acc09406caee5d3add43fe2f529ff6.zip |
Merge pull request #12400 from jaredbeck/fixes_guide_re_action_on_unpermitted_parameters
Fixes incorrect spelling of `action_on_unpermitted_parameters` in guide
Diffstat (limited to 'guides/source')
-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 57c7867348..7eac116e1f 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -309,7 +309,7 @@ The schema dumper adds one additional configuration option: * `config.action_controller.permit_all_parameters` sets all the parameters for mass assignment to be permitted by default. The default value is `false`. -* `config.action_controller.action_on_unpermitted_params` enables logging or raising an exception if parameters that are not explicitly permitted are found. Set to `:log` or `:raise` to enable. The default value is `:log` in development and test environments, and `false` in all other environments. +* `config.action_controller.action_on_unpermitted_parameters` enables logging or raising an exception if parameters that are not explicitly permitted are found. Set to `:log` or `:raise` to enable. The default value is `:log` in development and test environments, and `false` in all other environments. ### Configuring Action Dispatch |