aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2012-03-13 14:04:03 -0700
committerJosé Valim <jose.valim@gmail.com>2012-03-13 14:04:03 -0700
commitae67a63fe9c5be4b8e2ef74239ec340e99d231ac (patch)
tree41674ee21bc537f1bf4de9beca2efc0533a3ed02 /actionpack/lib/action_view
parent663b66fd538fc2f637f09bb27aad65449585f226 (diff)
parentf1637bf2bb00490203503fbd943b73406e043d1d (diff)
downloadrails-ae67a63fe9c5be4b8e2ef74239ec340e99d231ac.tar.gz
rails-ae67a63fe9c5be4b8e2ef74239ec340e99d231ac.tar.bz2
rails-ae67a63fe9c5be4b8e2ef74239ec340e99d231ac.zip
Merge pull request #572 from sikachu/remove_activeresource
Remove Active Resource source files from the repository.
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r--actionpack/lib/action_view/helpers/url_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/url_helper.rb b/actionpack/lib/action_view/helpers/url_helper.rb
index f4946e65b5..29f556502b 100644
--- a/actionpack/lib/action_view/helpers/url_helper.rb
+++ b/actionpack/lib/action_view/helpers/url_helper.rb
@@ -60,7 +60,7 @@ module ActionView
#
# ==== Relying on named routes
#
- # Passing a record (like an Active Record or Active Resource) instead of a Hash as the options parameter will
+ # Passing a record (like an Active Record) instead of a Hash as the options parameter will
# trigger the named route for that record. The lookup will happen on the name of the class. So passing a
# Workshop object will attempt to use the +workshop_path+ route. If you have a nested route, such as
# +admin_workshop_path+ you'll have to call that explicitly (it's impossible for +url_for+ to guess that route).