aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/url_helper.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-09-22 17:38:48 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-09-22 17:38:48 +0000
commitecceb87358576ce753d0ca55756c92be7ea0aa5f (patch)
tree3f8ae2a8c276f1ebe7585c28cc1091ffd71ff656 /actionpack/lib/action_view/helpers/url_helper.rb
parent6ccf5032294f6b6978a626fc8f793b4df1a38584 (diff)
downloadrails-ecceb87358576ce753d0ca55756c92be7ea0aa5f.tar.gz
rails-ecceb87358576ce753d0ca55756c92be7ea0aa5f.tar.bz2
rails-ecceb87358576ce753d0ca55756c92be7ea0aa5f.zip
Doc fix (closes #9414) [Henrik N]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7548 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view/helpers/url_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/url_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb
index 76963a20b3..010a789b85 100644
--- a/actionpack/lib/action_view/helpers/url_helper.rb
+++ b/actionpack/lib/action_view/helpers/url_helper.rb
@@ -104,15 +104,15 @@ module ActionView
# while spidering your site). Supported verbs are :post, :delete and :put.
# Note that if the user has JavaScript disabled, the request will fall back
# to using GET. If you are relying on the POST behavior, your should check
- # for it in your controllers action by using the request objects methods
+ # for it in your controller's action by using the request object's methods
# for post?, delete? or put?.
# * The +html_options+ will accept a hash of html attributes for the link tag.
#
# Note that if the user has JavaScript disabled, the request will fall back
# to using GET. If :href=>'#' is used and the user has JavaScript disabled
# clicking the link will have no effect. If you are relying on the POST
- # behavior, your should check for it in your controllers action by using the
- # request objects methods for post?, delete? or put?.
+ # behavior, your should check for it in your controller's action by using the
+ # request object's methods for post?, delete? or put?.
#
# You can mix and match the +html_options+ with the exception of
# :popup and :method which will raise an ActionView::ActionViewError