aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-09-26 08:01:49 -0700
committerYves Senn <yves.senn@gmail.com>2013-09-26 08:01:49 -0700
commit400ad8e5cc6600e2514a414df75f5f79850b7ce3 (patch)
tree2f5bb6b1a657592fe00af9c5ed3eae6d9d93fd18 /actionpack
parent0f969a989c87872935ecdd4db5ab700e35226238 (diff)
parentbac28f0eb36675d5df7e6a9ac813f4aa8446d58f (diff)
downloadrails-400ad8e5cc6600e2514a414df75f5f79850b7ce3.tar.gz
rails-400ad8e5cc6600e2514a414df75f5f79850b7ce3.tar.bz2
rails-400ad8e5cc6600e2514a414df75f5f79850b7ce3.zip
Merge pull request #12371 from cciollaro/master
[ci skip] escape unintended url in docs
Diffstat (limited to 'actionpack')
-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 f93f0d4404..db7b56f47e 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 \"post[address][street]", the params would have included
# <tt>{ "post" => { "address" => { "street" => "hyacintvej" } } }</tt>. There's no limit to the depth of the nesting.
#
# == Sessions