diff options
author | Oscar Del Ben <info@oscardelben.com> | 2012-05-15 19:46:40 -0700 |
---|---|---|
committer | Oscar Del Ben <info@oscardelben.com> | 2012-05-15 19:46:40 -0700 |
commit | 46156b87c0623e7de833584b2ee5939a4ae77674 (patch) | |
tree | 2b4bc3ea6f13c5324385629916863de86cef0ad8 /actionpack/lib | |
parent | ca18e2f8dd742107a5f7eee9de584ab858527b97 (diff) | |
download | rails-46156b87c0623e7de833584b2ee5939a4ae77674.tar.gz rails-46156b87c0623e7de833584b2ee5939a4ae77674.tar.bz2 rails-46156b87c0623e7de833584b2ee5939a4ae77674.zip |
Update action view context docs.
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/context.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/context.rb b/actionpack/lib/action_view/context.rb index 083856b2ca..245849d706 100644 --- a/actionpack/lib/action_view/context.rb +++ b/actionpack/lib/action_view/context.rb @@ -5,7 +5,7 @@ module ActionView # = Action View Context # - # Action View contexts are supplied to Action Controller to render template. + # Action View contexts are supplied to Action Controller to render a template. # The default Action View context is ActionView::Base. # # In order to work with ActionController, a Context must just include this module. @@ -25,7 +25,7 @@ module ActionView end # Encapsulates the interaction with the view flow so it - # returns the correct buffer on yield. This is usually + # returns the correct buffer on +yield+. This is usually # overwriten by helpers to add more behavior. # :api: plugin def _layout_for(name=nil) |