diff options
author | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2014-04-19 04:03:43 +0530 |
---|---|---|
committer | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2014-04-19 04:03:43 +0530 |
commit | fe8a6ba3a12452c9ba9cd4da554e65b08df2155c (patch) | |
tree | 3cda4b914e3674eb8316c34ec973d8cc5a75e802 /actionpack/lib/action_dispatch/http | |
parent | 5f72fc6af8ad19df2b4e4f442b9ab17dd6846f46 (diff) | |
download | rails-fe8a6ba3a12452c9ba9cd4da554e65b08df2155c.tar.gz rails-fe8a6ba3a12452c9ba9cd4da554e65b08df2155c.tar.bz2 rails-fe8a6ba3a12452c9ba9cd4da554e65b08df2155c.zip |
"subhash" --> "sub-hash"
Diffstat (limited to 'actionpack/lib/action_dispatch/http')
-rw-r--r-- | actionpack/lib/action_dispatch/http/filter_parameters.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/http/filter_parameters.rb b/actionpack/lib/action_dispatch/http/filter_parameters.rb index 289e204ac8..2b851cc28d 100644 --- a/actionpack/lib/action_dispatch/http/filter_parameters.rb +++ b/actionpack/lib/action_dispatch/http/filter_parameters.rb @@ -6,8 +6,8 @@ module ActionDispatch module Http # Allows you to specify sensitive parameters which will be replaced from # the request log by looking in the query string of the request and all - # subhashes of the params hash to filter. If a block is given, each key and - # value of the params hash and all subhashes is passed to it, the value + # sub-hashes of the params hash to filter. If a block is given, each key and + # value of the params hash and all sub-hashes is passed to it, the value # or key can be replaced using String#replace or similar method. # # env["action_dispatch.parameter_filter"] = [:password] |