diff options
author | Francis Go <francis.go@gmail.com> | 2013-09-27 21:22:09 +1000 |
---|---|---|
committer | Francis Go <francis.go@gmail.com> | 2013-09-27 21:22:09 +1000 |
commit | b41d3210e3d5fb32636ab7245496ef1714069114 (patch) | |
tree | 37d0bb59ed6413decc210a313d2b730b22a824d8 | |
parent | a6e1a73ffd05211e09e93fc5df4e5ef9af718b11 (diff) | |
download | rails-b41d3210e3d5fb32636ab7245496ef1714069114.tar.gz rails-b41d3210e3d5fb32636ab7245496ef1714069114.tar.bz2 rails-b41d3210e3d5fb32636ab7245496ef1714069114.zip |
Getting Started Guide: Update sentence in Chapter 5.8 [ci-skip]
-rw-r--r-- | guides/source/getting_started.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 5576b23d91..a5db4a2670 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -806,7 +806,7 @@ The route for this as per output of `rake routes` is: posts GET /posts(.:format) posts#index ``` -And an action for that route inside the `PostsController` in the `app/controllers/posts_controller.rb` file: +Add the corresponding `index` action for that route inside the `PostsController` in the `app/controllers/posts_controller.rb` file: ```ruby def index |