aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2014-02-09 23:39:49 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2014-02-09 23:39:49 +0530
commit8b5d08aca293fd46a1099c406bed54a2c22d952a (patch)
tree26e827c8849308d21bf5a10e9d708bb855f89fd5 /guides
parent92fdd6516287f677cd6687e5c31298fa68931baa (diff)
parentf25e41167d64d113d391dca46b3094098aaeb5d2 (diff)
downloadrails-8b5d08aca293fd46a1099c406bed54a2c22d952a.tar.gz
rails-8b5d08aca293fd46a1099c406bed54a2c22d952a.tar.bz2
rails-8b5d08aca293fd46a1099c406bed54a2c22d952a.zip
Merge pull request #13994 from elysdir/master
Clarifying confusing phrasing
Diffstat (limited to 'guides')
-rw-r--r--guides/source/getting_started.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 3e560bdd86..53b6bf82bb 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -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| %>