aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-09-27 04:55:33 -0700
committerYves Senn <yves.senn@gmail.com>2013-09-27 04:55:33 -0700
commit287014d7249cceb2842aa793a4500fed491feaf9 (patch)
tree4a97a54b99a8eef941aab579f2d0c32bc9eb5ce3 /guides/source/getting_started.md
parent00fc9684d47bb60f9734390c54244296412429b7 (diff)
parentb41d3210e3d5fb32636ab7245496ef1714069114 (diff)
downloadrails-287014d7249cceb2842aa793a4500fed491feaf9.tar.gz
rails-287014d7249cceb2842aa793a4500fed491feaf9.tar.bz2
rails-287014d7249cceb2842aa793a4500fed491feaf9.zip
Merge pull request #12366 from francisgo/patch-4
Getting Started Guide: Update sentence in Chapter 5.8 [ci-skip]
Diffstat (limited to 'guides/source/getting_started.md')
-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 400615878b..355e767ee2 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