From dc11b274a614cb30ebd454f48020ec3267a4a528 Mon Sep 17 00:00:00 2001 From: Colby Swandale Date: Thu, 11 Jun 2015 21:24:03 +1000 Subject: better clarity of params source in ActionController::Base documentation [ci skip] --- actionpack/lib/action_controller/base.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'actionpack/lib/action_controller') diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index bfae372f53..d5386fdcd1 100644 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -50,9 +50,9 @@ module ActionController # # == Parameters # - # All request parameters, whether they come from a GET or POST request, or from the URL, are available through the params method - # which returns a hash. For example, an action that was performed through /posts?category=All&limit=5 will include - # { "category" => "All", "limit" => "5" } in params. + # All request parameters, whether they come from a query sring in the URL or form data submitted through a POST request are + # available through the params method which returns a hash. For example, an action that was performed through + # /posts?category=All&limit=5 will include { "category" => "All", "limit" => "5" } in params. # # It's also possible to construct multi-dimensional parameter hashes by specifying keys using brackets, such as: # -- cgit v1.2.3