aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/engines.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-07-06 16:04:33 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-07-06 16:04:33 -0700
commit2ae545233dd88001511ee49c967010a35c0bf558 (patch)
treee667cabee66f5cf28e4e20678bd23539ad866319 /guides/source/engines.md
parent8f25e08ddafc3aea66575295ccbb32b733e41d1f (diff)
parent726530689efa492676b706495219d3c777ddc04a (diff)
downloadrails-2ae545233dd88001511ee49c967010a35c0bf558.tar.gz
rails-2ae545233dd88001511ee49c967010a35c0bf558.tar.bz2
rails-2ae545233dd88001511ee49c967010a35c0bf558.zip
Merge pull request #11324 from blahedo/master
Cleanup on getting_started tutorial
Diffstat (limited to 'guides/source/engines.md')
-rw-r--r--guides/source/engines.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index bc66ed256e..d714f84731 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -346,7 +346,7 @@ Next, the partial that this line will render needs to exist. Create a new direct
<h3>New comment</h3>
<%= form_for [@post, @post.comments.build] do |f| %>
<p>
- <%= f.label :text %><br />
+ <%= f.label :text %><br>
<%= f.text_area :text %>
</p>
<%= f.submit %>
@@ -515,7 +515,7 @@ First, the `author_name` text field needs to be added to the `app/views/blorgh/p
```html+erb
<div class="field">
- <%= f.label :author_name %><br />
+ <%= f.label :author_name %><br>
<%= f.text_field :author_name %>
</div>
```