aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2010-12-25 04:57:15 +0900
committerAkira Matsuda <ronnie@dio.jp>2010-12-25 04:58:11 +0900
commit4e50c6c08aa420456f0e456444a0cb4a277de7a7 (patch)
treec02986d9057cdf90e1b58ef4b401274b412f0be4 /actionpack/lib/action_controller
parent866647fdb1b6a9fb30670de2e67e7c9b2839db90 (diff)
downloadrails-4e50c6c08aa420456f0e456444a0cb4a277de7a7.tar.gz
rails-4e50c6c08aa420456f0e456444a0cb4a277de7a7.tar.bz2
rails-4e50c6c08aa420456f0e456444a0cb4a277de7a7.zip
.erb => .html.erb
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 48308cbb60..81c0698fb8 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -24,7 +24,7 @@ module ActionController
#
# Actions, by default, render a template in the <tt>app/views</tt> directory corresponding to the name of the controller and action
# after executing code in the action. For example, the +index+ action of the PostsController would render the
- # template <tt>app/views/posts/index.erb</tt> by default after populating the <tt>@posts</tt> instance variable.
+ # template <tt>app/views/posts/index.html.erb</tt> by default after populating the <tt>@posts</tt> instance variable.
#
# Unlike index, the create action will not render a template. After performing its main purpose (creating a
# new post), it initiates a redirect instead. This redirect works by returning an external