diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-10-09 05:58:07 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-10-09 05:58:07 -0700 |
commit | 7c6f8f8fd6be19663d02ea418142a346adf73bbd (patch) | |
tree | 332901b3060ab9645c92157d533648c83258f09e /actionpack/lib | |
parent | a0c0c1cbc1c092c4488389b9fb2faba5cb21a913 (diff) | |
parent | be8d8ba8b5d57a59f0f8d17b9c2fab4b98966e52 (diff) | |
download | rails-7c6f8f8fd6be19663d02ea418142a346adf73bbd.tar.gz rails-7c6f8f8fd6be19663d02ea418142a346adf73bbd.tar.bz2 rails-7c6f8f8fd6be19663d02ea418142a346adf73bbd.zip |
Merge pull request #12481 from arunagw/fixes
Few fixes which includes revert fixes
Diffstat (limited to 'actionpack/lib')
-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 db7b56f47e..3b0d094f4f 100644 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -73,7 +73,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 |