diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2008-03-15 20:08:05 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2008-03-15 20:08:05 +0000 |
commit | 3ecde39968bb91182033d7e590879373f697897c (patch) | |
tree | 43569e14937d1464a0662d1d779c8962c3c72119 /actionpack | |
parent | 7145c29be37874e7dc56bf67b05a91c6518c7895 (diff) | |
download | rails-3ecde39968bb91182033d7e590879373f697897c.tar.gz rails-3ecde39968bb91182033d7e590879373f697897c.tar.bz2 rails-3ecde39968bb91182033d7e590879373f697897c.zip |
Docfix (closes #11226) [mikong]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9034 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 253ab45420..680e078404 100644 --- a/actionpack/lib/action_view/helpers/url_helper.rb +++ b/actionpack/lib/action_view/helpers/url_helper.rb @@ -251,10 +251,10 @@ module ActionView # <li>About Us</li> # </ul> # - # ...but if in the "home" action, it will render: + # ...but if in the "index" action, it will render: # # <ul id="navbar"> - # <li><a href="/controller/index">Home</a></li> + # <li>Home</li> # <li><a href="/controller/about">About Us</a></li> # </ul> # |