diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-06-04 20:11:44 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-06-04 20:12:25 +0530 |
commit | fc9ff8cf418fa9fa5d82968bdd2f55bf622016e5 (patch) | |
tree | 37922e31b7ab7fe7929165d7d014550acf84e94f /actionpack/lib/action_controller | |
parent | 82aedbb96d2d6326a2700413ef16890499e11014 (diff) | |
download | rails-fc9ff8cf418fa9fa5d82968bdd2f55bf622016e5.tar.gz rails-fc9ff8cf418fa9fa5d82968bdd2f55bf622016e5.tar.bz2 rails-fc9ff8cf418fa9fa5d82968bdd2f55bf622016e5.zip |
some grammatical corrections
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/metal/params_wrapper.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/metal/params_wrapper.rb b/actionpack/lib/action_controller/metal/params_wrapper.rb index 5500f88930..2d8afc3a78 100644 --- a/actionpack/lib/action_controller/metal/params_wrapper.rb +++ b/actionpack/lib/action_controller/metal/params_wrapper.rb @@ -64,7 +64,7 @@ module ActionController # end # # will try to check if +Admin::User+ or +User+ model exists, and use it to - # determine the wrapper key respectively. If both of the model doesn't exists, + # determine the wrapper key respectively. If both models don't exist, # it will then fallback to use +user+ as the key. module ParamsWrapper extend ActiveSupport::Concern @@ -88,14 +88,14 @@ module ActionController # # wraps parameters into +params[:person]+ hash # # wrap_parameters Person - # # wraps parameters by determine the wrapper key from Person class + # # wraps parameters by determining the wrapper key from Person class # (+person+, in this case) and the list of attribute names # # wrap_parameters :include => [:username, :title] # # wraps only +:username+ and +:title+ attributes from parameters. # # wrap_parameters false - # # disable parameters wrapping for this controller altogether. + # # disables parameters wrapping for this controller altogether. # # ==== Options # * <tt>:format</tt> - The list of formats in which the parameters wrapper |