aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorAnkit Gupta <ankit.gupta8898@gmail.com>2013-07-25 09:32:51 +0100
committerAnkit Gupta <ankit.gupta8898@gmail.com>2013-07-25 11:57:27 +0100
commitc213bf174fc658d00fe33056207780ba4b8e3f85 (patch)
treeae78e4e737138894d2c7c3c22f49bd38c5843246 /actionpack/lib
parent962d2d2737fd48d20077cb0c38938473af88d054 (diff)
downloadrails-c213bf174fc658d00fe33056207780ba4b8e3f85.tar.gz
rails-c213bf174fc658d00fe33056207780ba4b8e3f85.tar.bz2
rails-c213bf174fc658d00fe33056207780ba4b8e3f85.zip
Typo fix
[skip ci] 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
Diffstat (limited to 'actionpack/lib')
-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