aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller/view_paths.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-05-06 14:32:48 +0200
committerJosé Valim <jose.valim@gmail.com>2011-05-06 14:57:25 +0200
commit894bdbd53dd82b6b28ff2672b85f57ed5ce97759 (patch)
tree6f6e2b8105891f1600b5b173f6805a1a3c6e8ea9 /actionpack/lib/abstract_controller/view_paths.rb
parentbe9857c21d9bf3e4c51a159b7d4edef69e203a57 (diff)
downloadrails-894bdbd53dd82b6b28ff2672b85f57ed5ce97759.tar.gz
rails-894bdbd53dd82b6b28ff2672b85f57ed5ce97759.tar.bz2
rails-894bdbd53dd82b6b28ff2672b85f57ed5ce97759.zip
Move variables to underscore format, update protected instance variables list.
Diffstat (limited to 'actionpack/lib/abstract_controller/view_paths.rb')
-rw-r--r--actionpack/lib/abstract_controller/view_paths.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/abstract_controller/view_paths.rb b/actionpack/lib/abstract_controller/view_paths.rb
index 0893459e24..6b7aae8c74 100644
--- a/actionpack/lib/abstract_controller/view_paths.rb
+++ b/actionpack/lib/abstract_controller/view_paths.rb
@@ -39,7 +39,7 @@ module AbstractController
# templates, i.e. view paths and details. Check ActionView::LookupContext for more
# information.
def lookup_context
- @lookup_context ||=
+ @_lookup_context ||=
ActionView::LookupContext.new(self.class._view_paths, details_for_lookup, _prefixes)
end