From a243f84b5ddbd12675e6354ed9f99f23241aaeed Mon Sep 17 00:00:00 2001 From: Christine Hertzel Date: Fri, 1 Mar 2013 13:05:00 -0500 Subject: Fixed grammatical error and simplified paragraph concerning controllers. Signed-off-by: Chelsea Macaluso --- guides/source/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guides') 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 -- cgit v1.2.3