diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-01-05 07:59:26 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-01-05 07:59:26 -0200 |
commit | a135f3797d6b66d77cc8193a45a3368870870ebf (patch) | |
tree | 7900836981b6a4df3576e3a28cb3a0c67893a908 | |
parent | cd1757ebeca31259592a65e2bbabd9921acf4557 (diff) | |
download | rails-a135f3797d6b66d77cc8193a45a3368870870ebf.tar.gz rails-a135f3797d6b66d77cc8193a45a3368870870ebf.tar.bz2 rails-a135f3797d6b66d77cc8193a45a3368870870ebf.zip |
Rename raise_on_unexpected_params to raise_on_unpermitted_parameters on the guides
-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 e7fe68e70a..bdf63f3d8d 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -304,7 +304,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.raise_on_unexpected_params` enables raising an exception if parameters that are not explicitly permitted are found. The default value is `true` in development and test environments, `false` otherwise. +* `config.action_controller.raise_on_unpermitted_parameters` enables raising an exception if parameters that are not explicitly permitted are found. The default value is `true` in development and test environments, `false` otherwise. ### Configuring Action Dispatch |