aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/rendering_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/helpers/rendering_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/rendering_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/rendering_helper.rb b/actionpack/lib/action_view/helpers/rendering_helper.rb
index 626e1a1ab7..458086de96 100644
--- a/actionpack/lib/action_view/helpers/rendering_helper.rb
+++ b/actionpack/lib/action_view/helpers/rendering_helper.rb
@@ -39,7 +39,7 @@ module ActionView
# The user can override this default by passing a block to the layout:
#
# # The template
- # <%= render :layout => "my_layout" do %>
+ # <%= render layout: "my_layout" do %>
# Content
# <% end %>
#
@@ -59,7 +59,7 @@ module ActionView
# Finally, the block can take block arguments, which can be passed in by +yield+:
#
# # The template
- # <%= render :layout => "my_layout" do |customer| %>
+ # <%= render layout: "my_layout" do |customer| %>
# Hello <%= customer.name %>
# <% end %>
#