aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2015-05-23 15:14:52 +0200
committerArun Agrawal <arunagw@gmail.com>2015-05-23 15:14:52 +0200
commit989296ff09ed879453897e0f223608cc0b60ad9f (patch)
tree1dc14bfff4912968f81cd47fdf3f26fd5f872c0e /guides/source
parent42e66fac38b54dd53d062fb5d3376218ed2ffdae (diff)
parentd3da2080487391ee5a28f3167c21084107858f52 (diff)
downloadrails-989296ff09ed879453897e0f223608cc0b60ad9f.tar.gz
rails-989296ff09ed879453897e0f223608cc0b60ad9f.tar.bz2
rails-989296ff09ed879453897e0f223608cc0b60ad9f.zip
Merge pull request #20275 from prathamesh-sonpatki/remove-div-for-from-guides
Remove div_for from guides [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/action_view_overview.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md
index 8a026cecac..950bb5e358 100644
--- a/guides/source/action_view_overview.md
+++ b/guides/source/action_view_overview.md
@@ -325,9 +325,9 @@ You can also render a block of code within a partial layout instead of calling `
```html+erb
<% render(layout: 'box', locals: { article: @article }) do %>
- <%= div_for(article) do %>
+ <div>
<p><%= article.body %></p>
- <% end %>
+ </div>
<% end %>
```