aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_view_overview.md
diff options
context:
space:
mode:
authorAvnerCohen <israbirding@gmail.com>2013-08-07 23:08:53 +0300
committerArun Agrawal <arunagw@gmail.com>2013-10-09 14:42:33 +0200
commitf3817594303a154a3f945ea1eef65fa4a7dfe64b (patch)
tree571e59def060a279359c6988abcf467634d09975 /guides/source/action_view_overview.md
parent91fe499275f8a2240e47f0bbb83cfe03aac1285d (diff)
downloadrails-f3817594303a154a3f945ea1eef65fa4a7dfe64b.tar.gz
rails-f3817594303a154a3f945ea1eef65fa4a7dfe64b.tar.bz2
rails-f3817594303a154a3f945ea1eef65fa4a7dfe64b.zip
Minor align BR tags with HTML void - with reference to the generators code change - https://github.com/rails/rails/commit/f038d4cc5fe1ac21f92c7e32c61ff85a0c816f3f
Diffstat (limited to 'guides/source/action_view_overview.md')
-rw-r--r--guides/source/action_view_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md
index 5cda104138..94aa0f8502 100644
--- a/guides/source/action_view_overview.md
+++ b/guides/source/action_view_overview.md
@@ -68,7 +68,7 @@ Consider the following loop for names:
```html+erb
<h1>Names of all the people</h1>
<% @people.each do |person| %>
- Name: <%= person.name %><br/>
+ Name: <%= person.name %><br>
<% end %>
```