diff options
author | Arun Agrawal <arunagw@gmail.com> | 2013-10-09 14:27:36 +0200 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2013-10-09 14:27:36 +0200 |
commit | a6bb8f4e3af31668abda791a2b65ca75bf25f4df (patch) | |
tree | c66b62208aded3743d961f1ec20cb6ba1c0b2780 /actionpack/lib/action_controller | |
parent | 31488dba851687eb4458155cf968eb544cbe0011 (diff) | |
download | rails-a6bb8f4e3af31668abda791a2b65ca75bf25f4df.tar.gz rails-a6bb8f4e3af31668abda791a2b65ca75bf25f4df.tar.bz2 rails-a6bb8f4e3af31668abda791a2b65ca75bf25f4df.zip |
Typo fix [ci skip]
Fixing the typo which is formed a not required link. Check
here http://api.rubyonrails.org/classes/ActionController/Base.html
under paramters section
keeping it under tt tag
gets reverted here ec8ef1e1055c4e1598da13f49d30261f07f4a9b4
Diffstat (limited to 'actionpack/lib/action_controller')
-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 |