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
committerAvnerCohen <israbirding@gmail.com>2013-08-07 23:08:53 +0300
commitabc75f027337863cca1167372447872e1c6f1339 (patch)
treea8b8a735bf0efdebc53a94b77cd1d62081975892 /guides/source/action_view_overview.md
parent86f2061cd53057012109f072976ceb1773fcd194 (diff)
downloadrails-abc75f027337863cca1167372447872e1c6f1339.tar.gz
rails-abc75f027337863cca1167372447872e1c6f1339.tar.bz2
rails-abc75f027337863cca1167372447872e1c6f1339.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 3542844f33..f4218994ae 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 %>
```