aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-06-11 17:09:37 -0600
committerSean Griffin <sean@seantheprogrammer.com>2015-06-11 17:09:37 -0600
commite2dfa54db881fceae92bdf793d5545c3f0e22898 (patch)
treef3800f86f3f84e92d38106982c9ac66d9e89414c
parentf6babddb585cd1cf2bd8eab66061b75b06b13909 (diff)
parent5a1bbb2ea704d9f599c82e1589cfa3cc7573a8a1 (diff)
downloadrails-e2dfa54db881fceae92bdf793d5545c3f0e22898.tar.gz
rails-e2dfa54db881fceae92bdf793d5545c3f0e22898.tar.bz2
rails-e2dfa54db881fceae92bdf793d5545c3f0e22898.zip
Merge pull request #20522 from colby-swandale/doc-update
fixed sring to be string in ActiveRecord::Base params documentation [ci skip]
-rw-r--r--actionpack/lib/action_controller/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index d5386fdcd1..2c3b3f4e05 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -50,7 +50,7 @@ module ActionController
#
# == Parameters
#
- # All request parameters, whether they come from a query sring in the URL or form data submitted through a POST request are
+ # All request parameters, whether they come from a query string 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
# <tt>/posts?category=All&limit=5</tt> will include <tt>{ "category" => "All", "limit" => "5" }</tt> in params.
#