aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorFrancis Go <francis.go@gmail.com>2013-09-27 21:22:09 +1000
committerFrancis Go <francis.go@gmail.com>2013-09-27 21:22:09 +1000
commitb41d3210e3d5fb32636ab7245496ef1714069114 (patch)
tree37d0bb59ed6413decc210a313d2b730b22a824d8 /guides/source
parenta6e1a73ffd05211e09e93fc5df4e5ef9af718b11 (diff)
downloadrails-b41d3210e3d5fb32636ab7245496ef1714069114.tar.gz
rails-b41d3210e3d5fb32636ab7245496ef1714069114.tar.bz2
rails-b41d3210e3d5fb32636ab7245496ef1714069114.zip
Getting Started Guide: Update sentence in Chapter 5.8 [ci-skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/getting_started.md2
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