aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2010-03-31 14:59:58 +0100
committerAndrew White <andyw@pixeltrix.co.uk>2010-03-31 14:59:58 +0100
commit1ed1652bef981d9402797b6cb9f0920a40eea21a (patch)
tree19e599b87a0286d5316acd3e8b67e65435bc5193
parentc10bf8205cb6e027428c398ed1cf27ff924258a1 (diff)
downloadrails-1ed1652bef981d9402797b6cb9f0920a40eea21a.tar.gz
rails-1ed1652bef981d9402797b6cb9f0920a40eea21a.tar.bz2
rails-1ed1652bef981d9402797b6cb9f0920a40eea21a.zip
ActionController::Resources has gone away
-rw-r--r--actionpack/lib/action_dispatch/routing/url_for.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/routing/url_for.rb b/actionpack/lib/action_dispatch/routing/url_for.rb
index b8c02f402c..dd86aa3e87 100644
--- a/actionpack/lib/action_dispatch/routing/url_for.rb
+++ b/actionpack/lib/action_dispatch/routing/url_for.rb
@@ -4,8 +4,7 @@ module ActionDispatch
# is also possible: an URL can be generated from one of your routing definitions.
# URL generation functionality is centralized in this module.
#
- # See ActionDispatch::Routing and ActionController::Resources for general
- # information about routing and routes.rb.
+ # See ActionDispatch::Routing for general information about routing and routes.rb.
#
# <b>Tip:</b> If you need to generate URLs from your models or some other place,
# then ActionController::UrlFor is what you're looking for. Read on for