From 2222ebb2b0e4d1519b9d2efd3a765b71c411a27e Mon Sep 17 00:00:00 2001 From: Zachary Porter Date: Fri, 11 Jan 2013 13:53:25 -0500 Subject: [PATCH] Update engine application layout file path --- guides/source/engines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/engines.md b/guides/source/engines.md index f35233993c..b5af634e59 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -263,7 +263,7 @@ This helps prevent conflicts with any other engine or application that may have Finally, two files that are the assets for this resource are generated, `app/assets/javascripts/blorgh/posts.js` and `app/assets/javascripts/blorgh/posts.css`. You'll see how to use these a little later. -By default, the scaffold styling is not applied to the engine as the engine's layout file, `app/views/blorgh/application.html.erb` doesn't load it. To make this apply, insert this line into the `` tag of this layout: +By default, the scaffold styling is not applied to the engine as the engine's layout file, `app/views/layouts/blorgh/application.html.erb` doesn't load it. To make this apply, insert this line into the `` tag of this layout: ```erb <%= stylesheet_link_tag "scaffold" %> -- GitLab