diff options
author | Xavier Noria <fxn@hashref.com> | 2011-05-14 11:15:43 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-05-14 11:15:43 +0200 |
commit | e5524d538c0d0f39d655a78fc45d2122c0ff2f2a (patch) | |
tree | c77f723799f123f43c5731880db82711f1851f72 /actionpack/lib/abstract_controller | |
parent | 47003f8cdf7afbfa1d78939f17d8b49c9c4348f7 (diff) | |
download | rails-e5524d538c0d0f39d655a78fc45d2122c0ff2f2a.tar.gz rails-e5524d538c0d0f39d655a78fc45d2122c0ff2f2a.tar.bz2 rails-e5524d538c0d0f39d655a78fc45d2122c0ff2f2a.zip |
minor edits after going through what's new in docrails
Diffstat (limited to 'actionpack/lib/abstract_controller')
-rw-r--r-- | actionpack/lib/abstract_controller/url_for.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/lib/abstract_controller/url_for.rb b/actionpack/lib/abstract_controller/url_for.rb index d2245d0b0d..e4261068d8 100644 --- a/actionpack/lib/abstract_controller/url_for.rb +++ b/actionpack/lib/abstract_controller/url_for.rb @@ -1,9 +1,9 @@ -# Includes #url_for into the host class (e.g. an abstract controller or mailer). The class -# has to provide a RouteSet by implementing the #_routes methods. Otherwise, an exception -# will be raised. +# Includes +url_for+ into the host class (e.g. an abstract controller or mailer). The class +# has to provide a +RouteSet+ by implementing the <tt>_routes</tt> methods. Otherwise, an +# exception will be raised. # # Note that this module is completely decoupled from HTTP - the only requirement is a valid -# #_routes implementation. +# <tt>_routes</tt> implementation. module AbstractController module UrlFor extend ActiveSupport::Concern |