aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-09-02 10:14:46 -0700
committerZachary Scott <e@zzak.io>2014-09-02 10:14:46 -0700
commit4e7e29d2fd719c756160aa187a40b58413c7db12 (patch)
treec4cd50796fc629631f33e91d238289d8c548a4e8
parentc247aa4cf9772f8ddedc79a01c65b8360de1700a (diff)
parent247cc94574cf92a9d04b37291088e3ba74ede4d7 (diff)
downloadrails-4e7e29d2fd719c756160aa187a40b58413c7db12.tar.gz
rails-4e7e29d2fd719c756160aa187a40b58413c7db12.tar.bz2
rails-4e7e29d2fd719c756160aa187a40b58413c7db12.zip
Merge pull request #16774 from cirosantilli/erb-erubis2
Shorten ActionView::Base doc summary line. [ci skip]
-rw-r--r--actionview/lib/action_view/base.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/actionview/lib/action_view/base.rb b/actionview/lib/action_view/base.rb
index e9843eeb08..d1bade0d3d 100644
--- a/actionview/lib/action_view/base.rb
+++ b/actionview/lib/action_view/base.rb
@@ -10,9 +10,10 @@ require 'action_view/lookup_context'
module ActionView #:nodoc:
# = Action View Base
#
- # 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
- # (not the one the Ruby stdlib, but the erubis[https://rubygems.org/gems/erubis] implementation) and HTML.
- # If the template file has a <tt>.builder</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 the erubis[https://rubygems.org/gems/erubis]
+ # template system which can embed Ruby into an HTML document.
+ # If the template file has a <tt>.builder</tt> extension, then Jim Weirich's Builder::XmlMarkup library is used.
#
# == ERB
#