aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémy Coutable <rymai@rymai.com>2010-08-25 15:52:43 +0200
committerRémy Coutable <rymai@rymai.com>2010-08-25 15:52:43 +0200
commit58e2fa3695cecce7fb8bb8cc0c43eecdd5a2ed7a (patch)
tree4e2ee63f1b2aa70523fa527642f081eabbad8a95
parent4e40f00565c2ccff8361fd6d87abecbbcc06a87e (diff)
downloadrails-58e2fa3695cecce7fb8bb8cc0c43eecdd5a2ed7a.tar.gz
rails-58e2fa3695cecce7fb8bb8cc0c43eecdd5a2ed7a.tar.bz2
rails-58e2fa3695cecce7fb8bb8cc0c43eecdd5a2ed7a.zip
Fixed a missing simple quote.
-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 a5c6718c58..a4771e87e9 100644
--- a/actionpack/lib/action_view/helpers/url_helper.rb
+++ b/actionpack/lib/action_view/helpers/url_helper.rb
@@ -367,7 +367,7 @@ module ActionView
# "Go Back" link instead of a link to the comments page, we could do something like this...
#
# <%=
- # link_to_unless_current("Comment", { :controller => 'comments', :action => 'new}) do
+ # link_to_unless_current("Comment", { :controller => 'comments', :action => 'new'}) do
# link_to("Go back", { :controller => 'posts', :action => 'index' })
# end
# %>