Merge pull request #2604 from vijaydev/params_wrapper_docs

Minor edit in the params wrapper api docs
This commit is contained in:
Santiago Pastorino 2011-08-20 12:20:53 -07:00
commit 77dfcae385
1 changed files with 3 additions and 4 deletions

View File

@ -9,10 +9,9 @@ module ActionController
# Wraps parameters hash into nested hash. This will allow client to submit
# POST request without having to specify a root element in it.
#
# By default this functionality won't be enabled. You can enable
# it globally by setting +ActionController::Base.wrap_parameters+:
#
# ActionController::Base.wrap_parameters = [:json]
# This functionality is enabled in +config/initializers/wrap_parameters.rb+
# and can be customized. If you are upgrading to Rails 3.1, this file will
# need to be created for the functionality to be enabled.
#
# You could also turn it on per controller by setting the format array to
# non-empty array: