From 713f1382586b68ba70fdac76164da76a516585e0 Mon Sep 17 00:00:00 2001 From: Francis Go Date: Sat, 28 Sep 2013 01:45:15 +1000 Subject: Getting Started Guide: Fix code container in Chapter 5.2 [ci-skip] --- guides/source/getting_started.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'guides/source') diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 355e767ee2..0a95fbec45 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -522,6 +522,7 @@ Edit the `form_for` line inside `app/views/posts/new.html.erb` to look like this In this example, the `posts_path` helper is passed to the `:url` option. To see what Rails will do with this, we look back at the output of `rake routes`: + ```bash $ rake routes Prefix Verb URI Pattern Controller#Action @@ -535,6 +536,7 @@ edit_post GET /posts/:id/edit(.:format) posts#edit DELETE /posts/:id(.:format) posts#destroy root / welcome#index ``` + The `posts_path` helper tells Rails to point the form to the URI Pattern associated with the `posts` prefix; and the form will (by default) send a `POST` request -- cgit v1.2.3