aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2007-11-06 18:44:06 +0000
committerMarcel Molina <marcel@vernix.org>2007-11-06 18:44:06 +0000
commit87037afc33827b033853f65aef9997d8b8ec31ae (patch)
tree4b9b5c9f96e8a4b2c8b283da5d1bb8e66b43b725 /actionpack
parent7863c4a18a4991c4942f52a4f88bbc1bdd9b7572 (diff)
downloadrails-87037afc33827b033853f65aef9997d8b8ec31ae.tar.gz
rails-87037afc33827b033853f65aef9997d8b8ec31ae.tar.bz2
rails-87037afc33827b033853f65aef9997d8b8ec31ae.zip
Fix typo left over from previous typo fix in url helper. Closes #9414 [Henrik N]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8091 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG2
-rw-r--r--actionpack/lib/action_view/helpers/url_helper.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 62feda696b..46986d07e9 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fix typo left over from previous typo fix in url helper. Closes #9414 [Henrik N]
+
* Fixed that ActionController::CgiRequest#host_with_port() should handle standard port #10082 [moro]
* Update Prototype to 1.6.0 and script.aculo.us to 1.8.0. [sam, madrobby]
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb
index 77201de1d6..ddd09de352 100644
--- a/actionpack/lib/action_view/helpers/url_helper.rb
+++ b/actionpack/lib/action_view/helpers/url_helper.rb
@@ -104,7 +104,7 @@ module ActionView
# in dangerous actions like deleting a record (which search bots can follow
# 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
+ # to using GET. If you are relying on the POST behavior, you should check
# 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.