From 5a1bbb2ea704d9f599c82e1589cfa3cc7573a8a1 Mon Sep 17 00:00:00 2001 From: Colby Swandale Date: Fri, 12 Jun 2015 06:49:26 +1000 Subject: [PATCH] fixed sring to be string in ActiveRecord::Base params documentation --- actionpack/lib/action_controller/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 # /posts?category=All&limit=5 will include { "category" => "All", "limit" => "5" } in params. #