aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2013-08-17 21:38:53 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2013-08-17 21:46:39 +0530
commitec8ef1e1055c4e1598da13f49d30261f07f4a9b4 (patch)
treed5450558358174f6963323061e25366246ff5801 /actionpack/lib/action_controller
parentdba4c6fe539c24ec1beb106e34f37f3cd0632022 (diff)
downloadrails-ec8ef1e1055c4e1598da13f49d30261f07f4a9b4.tar.gz
rails-ec8ef1e1055c4e1598da13f49d30261f07f4a9b4.tar.bz2
rails-ec8ef1e1055c4e1598da13f49d30261f07f4a9b4.zip
Revert "Merge branch 'master' of github.com:rails/docrails"
This reverts commit 70d6e16fbad75b89dd1798ed697e7732b8606fa3, reversing changes made to ea4db3bc078fb3093ecdddffdf4f2f4ff3e1e8f9. Seems to be a code merge done by mistake.
Diffstat (limited to 'actionpack/lib/action_controller')
-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 168ae0a529..d7b09b67c0 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 <tt>post[address][street]</tt>, 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