1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fixed a missing simple quote.

This commit is contained in:
Rémy Coutable 2010-08-25 15:52:43 +02:00
parent 4e40f00565
commit 58e2fa3695

View file

@ -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
# %>