diff options
author | Alexey Vakhov <vakhov@gmail.com> | 2012-05-02 09:28:43 +0400 |
---|---|---|
committer | Alexey Vakhov <vakhov@gmail.com> | 2012-05-02 09:28:43 +0400 |
commit | b214ddd1c986a466923fd8a2f3dddff5bfe28637 (patch) | |
tree | 327ceb29f04ee333a9357a41e4dc32e774ac3b7d | |
parent | 7b9faf7b283c55d35124a3c665f170663994124b (diff) | |
download | rails-b214ddd1c986a466923fd8a2f3dddff5bfe28637.tar.gz rails-b214ddd1c986a466923fd8a2f3dddff5bfe28637.tar.bz2 rails-b214ddd1c986a466923fd8a2f3dddff5bfe28637.zip |
Fix example url in text helper
-rw-r--r-- | actionpack/lib/action_view/helpers/text_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/text_helper.rb b/actionpack/lib/action_view/helpers/text_helper.rb index 12bb162da2..fffc37ce9e 100644 --- a/actionpack/lib/action_view/helpers/text_helper.rb +++ b/actionpack/lib/action_view/helpers/text_helper.rb @@ -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 # %> |