From 605f4267bc4a98783430eb28a56e17c3f09e5871 Mon Sep 17 00:00:00 2001 From: Ryan Bigg Date: Wed, 14 Mar 2012 18:49:52 -0700 Subject: [getting started] remove indentation for get 'posts/new' --- railties/guides/source/getting_started.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'railties/guides/source') diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index c0af3cdc08..b1615cecb8 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -233,7 +233,7 @@ This is because there is nowhere inside the routes for the application -- define To do this, you're going to need to create a route inside +config/routes.rb+ file, on a new line between the +do+ and the +end+ for the +draw+ method: - get "posts/new" +get "posts/new" This route is a super-simple route: it defines a new route that only responds to +GET+ requests, and that the route is at +posts/new+. But how does it know where to go without the use of the +:to+ option? Well, Rails uses a sensible default here: Rails will assume that we want this route to go to the new action inside the posts controller. -- cgit v1.2.3