aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristine Hertzel <c.hertzel@modcloth.com>2013-03-01 13:05:00 -0500
committerChelsea Macaluso <c.macaluso@modcloth.com>2013-03-01 13:05:00 -0500
commita243f84b5ddbd12675e6354ed9f99f23241aaeed (patch)
tree54996ee524736a156b5ae0d508c9c802c895795f
parentf8461f73c77c186ad0aa735fe9877990bffe1990 (diff)
downloadrails-a243f84b5ddbd12675e6354ed9f99f23241aaeed.tar.gz
rails-a243f84b5ddbd12675e6354ed9f99f23241aaeed.tar.bz2
rails-a243f84b5ddbd12675e6354ed9f99f23241aaeed.zip
Fixed grammatical error and simplified paragraph concerning controllers.
Signed-off-by: Chelsea Macaluso <c.macaluso@modcloth.com>
-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 95490b5e35..742b8ae548 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -280,7 +280,7 @@ With the route defined, requests can now be made to `/posts/new` in the applicat
![Another routing error, uninitialized constant PostsController](images/getting_started/routing_error_no_controller.png)
-This error is happening because this route need a controller to be defined. The route is attempting to find that controller so it can serve the request, but with the controller undefined, it just can't do that. The solution to this particular problem is simple: you need to create a controller called `PostsController`. You can do this by running this command:
+This error occurs because the route needs to have a controller defined in order to serve the request. The solution to this particular problem is simple: create a controller called `PostsController`. You can do this by running this command:
```bash
$ rails g controller posts