diff options
author | Ari Pollak <ajp@aripollak.com> | 2014-06-02 16:43:43 -0400 |
---|---|---|
committer | Ari Pollak <ajp@aripollak.com> | 2014-06-02 16:48:10 -0400 |
commit | 742b57475adfc6ad9e1ff7a6c37c83e63fb6803c (patch) | |
tree | c745d08e2b320b8698cb68a018bc89993650cc85 | |
parent | 083f8e0d41e1af599610fba91a0bc6668867a7bf (diff) | |
download | rails-742b57475adfc6ad9e1ff7a6c37c83e63fb6803c.tar.gz rails-742b57475adfc6ad9e1ff7a6c37c83e63fb6803c.tar.bz2 rails-742b57475adfc6ad9e1ff7a6c37c83e63fb6803c.zip |
Fix typo in ActionController Overview
* Should say "sensitive" instead of "sensible"
-rw-r--r-- | guides/source/action_controller_overview.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md index 1735188f27..3d15319ca4 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -1078,7 +1078,7 @@ Rails keeps a log file for each environment in the `log` folder. These are extre ### Parameters Filtering -You can filter certain request parameters from your log files by appending them to `config.filter_parameters` in the application configuration. These parameters will be marked [FILTERED] in the log. +You can filter out sensitive request parameters from your log files by appending them to `config.filter_parameters` in the application configuration. These parameters will be marked [FILTERED] in the log. ```ruby config.filter_parameters << :password @@ -1086,7 +1086,7 @@ config.filter_parameters << :password ### Redirects Filtering -Sometimes it's desirable to filter out from log files some sensible locations your application is redirecting to. +Sometimes it's desirable to filter out from log files some sensitive locations your application is redirecting to. You can do that by using the `config.filter_redirect` configuration option: ```ruby |