diff options
author | Arun Agrawal <arunagw@gmail.com> | 2015-05-23 15:14:52 +0200 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2015-05-23 15:14:52 +0200 |
commit | 989296ff09ed879453897e0f223608cc0b60ad9f (patch) | |
tree | 1dc14bfff4912968f81cd47fdf3f26fd5f872c0e | |
parent | 42e66fac38b54dd53d062fb5d3376218ed2ffdae (diff) | |
parent | d3da2080487391ee5a28f3167c21084107858f52 (diff) | |
download | rails-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]
-rw-r--r-- | guides/source/action_view_overview.md | 4 |
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 %> ``` |