diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-10-09 20:10:53 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-10-09 20:10:53 +0530 |
commit | a2edc884f3188b076ef8856521f96bb8528b4287 (patch) | |
tree | e4fb02eaeabd9f027a3dc718932aa02c5c52e40b /actionpack | |
parent | 1774ec7464877cfb2e0900344deff17c78bc491f (diff) | |
parent | 3a72c01be2add83c76e6180d60a520491484c01e (diff) | |
download | rails-a2edc884f3188b076ef8856521f96bb8528b4287.tar.gz rails-a2edc884f3188b076ef8856521f96bb8528b4287.tar.bz2 rails-a2edc884f3188b076ef8856521f96bb8528b4287.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index da93c988c4..98bfe72fef 100644 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -50,7 +50,7 @@ module ActionController # # 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 <tt>/posts?category=All&limit=5</tt> will include - # <tt>{ "category" => "All", "limit" => 5 }</tt> in params. + # <tt>{ "category" => "All", "limit" => "5" }</tt> in params. # # It's also possible to construct multi-dimensional parameter hashes by specifying keys using brackets, such as: # |