diff options
author | Xavier Noria <fxn@hashref.com> | 2012-08-29 01:39:34 -0700 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-08-29 01:39:34 -0700 |
commit | 8e974f2e3c06ddbba9064c7801988763bc7dec69 (patch) | |
tree | 735f10462d94dd282bbb32203385c08c37d73583 /actionpack | |
parent | 754173c5ff89bf3251dfcc6577e4b3c16de8aeef (diff) | |
parent | 8d9f9f9dfbe7b348f1f127e7a51a624759f2708f (diff) | |
download | rails-8e974f2e3c06ddbba9064c7801988763bc7dec69.tar.gz rails-8e974f2e3c06ddbba9064c7801988763bc7dec69.tar.bz2 rails-8e974f2e3c06ddbba9064c7801988763bc7dec69.zip |
Merge pull request #7476 from ayrton/fixed_indentation
Fixed indendation
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/abstract_controller/helpers.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/abstract_controller/helpers.rb b/actionpack/lib/abstract_controller/helpers.rb index d63d17f4c5..d3929b685c 100644 --- a/actionpack/lib/abstract_controller/helpers.rb +++ b/actionpack/lib/abstract_controller/helpers.rb @@ -32,9 +32,9 @@ module AbstractController # @current_user ||= User.find_by_id(session[:user]) # end # - # def logged_in? - # current_user != nil - # end + # def logged_in? + # current_user != nil + # end # end # # In a view: |