aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
authorOscar Del Ben <info@oscardelben.com>2012-05-15 19:46:40 -0700
committerOscar Del Ben <info@oscardelben.com>2012-05-15 19:46:40 -0700
commit46156b87c0623e7de833584b2ee5939a4ae77674 (patch)
tree2b4bc3ea6f13c5324385629916863de86cef0ad8 /actionpack/lib/action_view
parentca18e2f8dd742107a5f7eee9de584ab858527b97 (diff)
downloadrails-46156b87c0623e7de833584b2ee5939a4ae77674.tar.gz
rails-46156b87c0623e7de833584b2ee5939a4ae77674.tar.bz2
rails-46156b87c0623e7de833584b2ee5939a4ae77674.zip
Update action view context docs.
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r--actionpack/lib/action_view/context.rb4
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)