From 8cf428fe78d8a45690524e83663e69ae35a5c413 Mon Sep 17 00:00:00 2001 From: Tim McEwan Date: Fri, 12 Oct 2012 22:18:49 +1100 Subject: [PATCH] specify path to CommentsController again inline (incorporating feedback from a newbie) --- guides/source/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index cf11a427ad..cceb124441 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1420,7 +1420,7 @@ This adds a form on the `Post` show page that creates a new comment by calling the `CommentsController` `create` action. The `form_for` call here uses an array, which will build a nested route, such as `/posts/1/comments`. -Let's wire up the `create`: +Let's wire up the `create` in `app/controllers/comments_controller.rb`: ```ruby class CommentsController < ApplicationController