aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorChris Ciollaro <oitcc3@oit.umass.edu>2013-09-26 10:27:20 -0400
committerChris Ciollaro <oitcc3@oit.umass.edu>2013-09-26 10:32:12 -0400
commitbac28f0eb36675d5df7e6a9ac813f4aa8446d58f (patch)
tree2f5bb6b1a657592fe00af9c5ed3eae6d9d93fd18 /actionpack
parent0f969a989c87872935ecdd4db5ab700e35226238 (diff)
downloadrails-bac28f0eb36675d5df7e6a9ac813f4aa8446d58f.tar.gz
rails-bac28f0eb36675d5df7e6a9ac813f4aa8446d58f.tar.bz2
rails-bac28f0eb36675d5df7e6a9ac813f4aa8446d58f.zip
[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