aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/engines.md
diff options
context:
space:
mode:
authorZachary Porter <zporter9@gmail.com>2013-01-11 13:53:25 -0500
committerZachary Porter <zporter9@gmail.com>2013-01-11 13:53:25 -0500
commit2222ebb2b0e4d1519b9d2efd3a765b71c411a27e (patch)
tree5eac3864425074dc79aa24607f66795ee5748029 /guides/source/engines.md
parent5ff752de1b446b5340316e3d64c377fa05e4f7e7 (diff)
downloadrails-2222ebb2b0e4d1519b9d2efd3a765b71c411a27e.tar.gz
rails-2222ebb2b0e4d1519b9d2efd3a765b71c411a27e.tar.bz2
rails-2222ebb2b0e4d1519b9d2efd3a765b71c411a27e.zip
Update engine application layout file path
Diffstat (limited to 'guides/source/engines.md')
-rw-r--r--guides/source/engines.md2
1 files changed, 1 insertions, 1 deletions
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 `<head>` 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 `<head>` tag of this layout:
```erb
<%= stylesheet_link_tag "scaffold" %>