diff --git a/actionview/lib/action_view/base.rb b/actionview/lib/action_view/base.rb index e9843eeb08248682bef145c476fac98cd81a684e..d1bade0d3d0a9284052867b4b16b8aabc348ddc6 100644 --- a/actionview/lib/action_view/base.rb +++ b/actionview/lib/action_view/base.rb @@ -10,9 +10,10 @@ module ActionView #:nodoc: # = Action View Base # - # Action View templates can be written in several ways. If the template file has a .erb 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 .builder 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 .erb 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 .builder extension, then Jim Weirich's Builder::XmlMarkup library is used. # # == ERB #