diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2005-11-15 09:42:32 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2005-11-15 09:42:32 +0000 |
commit | 05d580dffa4fc01bb1252a1b91d1abfb660b0af7 (patch) | |
tree | faaac1c02fee06391efb4104642b24765b53b51c /actionpack | |
parent | f2ee215becb62fb33dfb8e81ded65ec809a24a7f (diff) | |
download | rails-05d580dffa4fc01bb1252a1b91d1abfb660b0af7.tar.gz rails-05d580dffa4fc01bb1252a1b91d1abfb660b0af7.tar.bz2 rails-05d580dffa4fc01bb1252a1b91d1abfb660b0af7.zip |
Remove invalid links in ActionView::Helpers::UrlHelper documentation. Closes #1961.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3041 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/url_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb index 3ec0a65971..48e5af3491 100644 --- a/actionpack/lib/action_view/helpers/url_helper.rb +++ b/actionpack/lib/action_view/helpers/url_helper.rb @@ -10,7 +10,7 @@ module ActionView include JavaScriptHelper # Returns the URL for the set of +options+ provided. This takes the same options - # as url_for. For a list, see the url_for documentation in link:classes/ActionController/Base.html#M000079. + # as url_for. For a list, see the documentation for ActionController::Base#url_for. # Note that it'll set :only_path => true so you'll get /controller/action instead of the # http://example.com/controller/action part (makes it harder to parse httpd log files) def url_for(options = {}, *parameters_for_method_reference) @@ -19,7 +19,7 @@ module ActionView end # Creates a link tag of the given +name+ using an URL created by the set of +options+. See the valid options in - # link:classes/ActionView/Helpers/UrlHelper.html#M000304. It's also possible to pass a string instead of an options hash to + # the documentation for ActionController::Base#url_for. It's also possible to pass a string instead of an options hash to # get a link tag that just points without consideration. If nil is passed as a name, the link itself will become the name. # # The html_options has three special features. One for creating javascript confirm alerts where if you pass :confirm => 'Are you sure?', |