1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

fixed sring to be string in ActiveRecord::Base params documentation

This commit is contained in:
Colby Swandale 2015-06-12 06:49:26 +10:00
parent dc11b274a6
commit 5a1bbb2ea7

View file

@ -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.
#