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
committerJoshua Peek <josh@joshpeek.com>2008-12-29 19:27:19 -0600
commit558ab327b733717f4a8de3ed62b8dcd62e9ff9c3 (patch)
treec9fa54a925e8259057d8a6d9b20447d8ae8ea844 /actionpack/lib/action_view/base.rb
parent490c26c8433a6d278bc61118782da360e8889646 (diff)
downloadrails-558ab327b733717f4a8de3ed62b8dcd62e9ff9c3.tar.gz
rails-558ab327b733717f4a8de3ed62b8dcd62e9ff9c3.tar.bz2
rails-558ab327b733717f4a8de3ed62b8dcd62e9ff9c3.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 8958e61e9d..70a0ba91a7 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.