aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorUģis Ozols <ugis.ozolss@gmail.com>2011-12-05 20:37:08 +0200
committerUģis Ozols <ugis.ozolss@gmail.com>2011-12-05 20:40:48 +0200
commit1c65962b9da73d5ee231d38794166a94c80e4a74 (patch)
tree3d5cfecbed33b4b64700295549281f69ba926667 /actionpack
parent0bcac982b603787265e567d0f71da205d4be63c4 (diff)
downloadrails-1c65962b9da73d5ee231d38794166a94c80e4a74.tar.gz
rails-1c65962b9da73d5ee231d38794166a94c80e4a74.tar.bz2
rails-1c65962b9da73d5ee231d38794166a94c80e4a74.zip
.rhtml and .rxml was removed in Rails 3.
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_view/base.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index 36c49d9c91..dedd8f9b76 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -9,8 +9,8 @@ require 'active_support/core_ext/module/deprecation'
module ActionView #:nodoc:
# = Action View Base
#
- # Action View templates can be written in several ways. If the template file has a <tt>.erb</tt> (or <tt>.rhtml</tt>) extension then it uses a mixture of ERb
- # (included in Ruby) and HTML. If the template file has a <tt>.builder</tt> (or <tt>.rxml</tt>) extension then Jim Weirich's Builder::XmlMarkup library is used.
+ # Action View templates can be written in several ways. If the template file has a <tt>.erb</tt> extension then it uses a mixture of ERb
+ # (included in Ruby) and HTML. If the template file has a <tt>.builder</tt> extension then Jim Weirich's Builder::XmlMarkup library is used.
#
# == ERB
#