diff options
author | Jed Hartman <logos-github@kith.org> | 2014-02-09 09:36:53 -0800 |
---|---|---|
committer | Jed Hartman <logos-github@kith.org> | 2014-02-09 09:36:53 -0800 |
commit | f25e41167d64d113d391dca46b3094098aaeb5d2 (patch) | |
tree | 66672b3064d4eff8888b8fb356dceb44b06f8df5 /guides/source | |
parent | 33be58b2060b1e859e8da370b911822c20028690 (diff) | |
download | rails-f25e41167d64d113d391dca46b3094098aaeb5d2.tar.gz rails-f25e41167d64d113d391dca46b3094098aaeb5d2.tar.bz2 rails-f25e41167d64d113d391dca46b3094098aaeb5d2.zip |
Clarifying confusing phrasing
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/getting_started.md | 6 |
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| %> |