aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/base.rb
diff options
context:
space:
mode:
authorCiro Santilli <ciro.santilli@gmail.com>2014-09-02 19:09:42 +0200
committerCiro Santilli <ciro.santilli@gmail.com>2014-09-02 19:09:42 +0200
commit247cc94574cf92a9d04b37291088e3ba74ede4d7 (patch)
treec4cd50796fc629631f33e91d238289d8c548a4e8 /actionview/lib/action_view/base.rb
parentafb230ec93bee6e6475a51f17a13df72a72e703d (diff)
downloadrails-247cc94574cf92a9d04b37291088e3ba74ede4d7.tar.gz
rails-247cc94574cf92a9d04b37291088e3ba74ede4d7.tar.bz2
rails-247cc94574cf92a9d04b37291088e3ba74ede4d7.zip
Shorten ActionView::Base doc summary line. [ci skip]
Diffstat (limited to 'actionview/lib/action_view/base.rb')
-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
#