aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorThiago Pinto <tapgyn@gmail.com>2013-08-14 02:02:38 -0400
committerThiago Pinto <tapgyn@gmail.com>2013-08-14 02:02:38 -0400
commit70d6e16fbad75b89dd1798ed697e7732b8606fa3 (patch)
treebe55dfa9e84cfd72313b4233bbe9262b8d764124 /actionpack/lib/action_controller
parentea4db3bc078fb3093ecdddffdf4f2f4ff3e1e8f9 (diff)
parentabc75f027337863cca1167372447872e1c6f1339 (diff)
downloadrails-70d6e16fbad75b89dd1798ed697e7732b8606fa3.tar.gz
rails-70d6e16fbad75b89dd1798ed697e7732b8606fa3.tar.bz2
rails-70d6e16fbad75b89dd1798ed697e7732b8606fa3.zip
Merge branch 'master' of github.com:rails/docrails
Diffstat (limited to 'actionpack/lib/action_controller')
-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 d7b09b67c0..168ae0a529 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -59,7 +59,7 @@ module ActionController
# <input type="text" name="post[address]" value="hyacintvej">
#
# A request stemming from a form holding these inputs will include <tt>{ "post" => { "name" => "david", "address" => "hyacintvej" } }</tt>.
- # If the address input had been named "post[address][street]", the params would have included
+ # If the address input had been named <tt>post[address][street]</tt>, the params would have included
# <tt>{ "post" => { "address" => { "street" => "hyacintvej" } } }</tt>. There's no limit to the depth of the nesting.
#
# == Sessions