aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-08-05 10:52:36 -0700
committerXavier Noria <fxn@hashref.com>2013-08-05 10:52:36 -0700
commit6da48e92dd9c16d882dd335e967b368cfede7ede (patch)
tree94d1bafe932ba4742ac8b7a32a7c809b32940c56 /guides/source
parent03eae19e4d2f1ea1975af79668859c3a9533fa6d (diff)
parente2bbc2bb2a5aba10ca420c4e860fc98f718c36e7 (diff)
downloadrails-6da48e92dd9c16d882dd335e967b368cfede7ede.tar.gz
rails-6da48e92dd9c16d882dd335e967b368cfede7ede.tar.bz2
rails-6da48e92dd9c16d882dd335e967b368cfede7ede.zip
Merge pull request #11666 from prathamesh-sonpatki/doc-fix
Removed confusing statement about adding route for show action in getting started guide [ci skip]
Diffstat (limited to 'guides/source')
-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 fb52eb225a..dabdb391b3 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -575,7 +575,7 @@ If you submit the form again now, Rails will complain about not finding
the `show` action. That's not very useful though, so let's add the
`show` action before proceeding.
-First we need to add a new `route` in `config/routes.rb`.
+As we have seen in the output of `rake routes`, the route for `show` action is as follows:
```ruby
post GET /posts/:id(.:format) posts#show
@@ -654,7 +654,7 @@ For more information, refer to
### Listing all posts
We still need a way to list all our posts, so let's do that.
-We'll use a specific route from `config/routes.rb`:
+The route for this as per output of `rake routes` is:
```ruby
posts GET /posts(.:format) posts#index
@@ -1071,7 +1071,7 @@ Then do the same for the `app/views/posts/edit.html.erb` view:
We're now ready to cover the "D" part of CRUD, deleting posts from the
database. Following the REST convention, the route for
-deleting posts in the `config/routes.rb` is:
+deleting posts as per output of `rake routes` is:
```ruby
DELETE /posts/:id(.:format) posts#destroy