aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/base.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-12-29 19:27:19 -0600
committerYehuda Katz <wycats@gmail.com>2009-01-01 00:13:11 -0800
commitab7c25d51174779547ab74bcd23e40204891e370 (patch)
tree629a893593b5114f3aca9f1f16f9fe09362f19d5 /actionpack/lib/action_view/base.rb
parent860dd77006b66a0b0805e3e6edc6b80739f6fca3 (diff)
downloadrails-ab7c25d51174779547ab74bcd23e40204891e370.tar.gz
rails-ab7c25d51174779547ab74bcd23e40204891e370.tar.bz2
rails-ab7c25d51174779547ab74bcd23e40204891e370.zip
Clean up view path cruft and split path implementations into Template::Path and Template::EagerPath
Diffstat (limited to 'actionpack/lib/action_view/base.rb')
-rw-r--r--actionpack/lib/action_view/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index 50b79f5e35..1529bd3de7 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -225,7 +225,7 @@ module ActionView #:nodoc:
end
# Returns the result of a render that's dictated by the options hash. The primary options are:
- #
+ #
# * <tt>:partial</tt> - See ActionView::Partials.
# * <tt>:update</tt> - Calls update_page with the block given.
# * <tt>:file</tt> - Renders an explicit template file (this used to be the old default), add :locals to pass in those.