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

Fix example url in text helper

This commit is contained in:
Alexey Vakhov 2012-05-02 09:28:43 +04:00
parent 7b9faf7b28
commit b214ddd1c9

View file

@ -45,7 +45,7 @@ module ActionView
# if logged_in
# concat "Logged in!"
# else
# concat link_to('login', :action => login)
# concat link_to('login', :action => :login)
# end
# # will either display "Logged in!" or a login link
# %>