1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Clarifying confusing phrasing

This commit is contained in:
Jed Hartman 2014-02-09 09:36:53 -08:00
parent 33be58b206
commit f25e41167d

View file

@ -880,9 +880,9 @@ Let's add links to the other views as well, starting with adding this
```
This link will allow you to bring up the form that lets you create a new article.
You should also add a link to this template - `app/views/articles/new.html.erb`
- to go back to the `index` action. Do this by adding this underneath the form
in this template:
Also add a link in `app/views/articles/new.html.erb`, underneath the form, to
go back to the `index` action:
```erb
<%= form_for :article do |f| %>