aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-10-10 12:40:47 +0200
committerJosé Valim <jose.valim@gmail.com>2010-10-10 12:43:26 +0200
commitcba395dab9812d86d48cc0574061cd6dcd18009b (patch)
treeac4045c541b55fc8f7f84fba461f80071014e224 /actionpack/lib/action_view
parent940b57789fb9166658974c591e68d22ecab29f34 (diff)
downloadrails-cba395dab9812d86d48cc0574061cd6dcd18009b.tar.gz
rails-cba395dab9812d86d48cc0574061cd6dcd18009b.tar.bz2
rails-cba395dab9812d86d48cc0574061cd6dcd18009b.zip
Update CHANGELOG.
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r--actionpack/lib/action_view/render/rendering.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/render/rendering.rb b/actionpack/lib/action_view/render/rendering.rb
index 0cd5d9d437..baa5d2c3fd 100644
--- a/actionpack/lib/action_view/render/rendering.rb
+++ b/actionpack/lib/action_view/render/rendering.rb
@@ -10,7 +10,7 @@ module ActionView
# * <tt>:file</tt> - Renders an explicit template file (this used to be the old default), add :locals to pass in those.
# * <tt>:inline</tt> - Renders an inline template similar to how it's done in the controller.
# * <tt>:text</tt> - Renders the text passed in out.
- # * <tt>:once</tt> - Receives :template paths and ensures they are rendered just once.
+ # * <tt>:once</tt> - Accepts a string or an array of strings and Rails will ensure they each of them are rendered just once.
#
# If no options hash is passed or :update specified, the default is to render a partial and use the second parameter
# as the locals hash.