aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorBrian Littmann <brian.littmann@gmail.com>2013-01-22 15:17:16 -0600
committerBrian Littmann <brian.littmann@gmail.com>2013-01-22 15:17:16 -0600
commit634a2aafbea9e50a722a9f0245d650239296f3be (patch)
tree49f11d91c0f5bd2c3f4619a29838e727249e32a1 /guides
parentcb413c77cdc55e085514d1a5d4b945761f40a7f9 (diff)
downloadrails-634a2aafbea9e50a722a9f0245d650239296f3be.tar.gz
rails-634a2aafbea9e50a722a9f0245d650239296f3be.tar.bz2
rails-634a2aafbea9e50a722a9f0245d650239296f3be.zip
Typo fix in guides/source/engines.md
Diffstat (limited to 'guides')
-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 0a346b28f9..bcbabc7eec 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -261,7 +261,7 @@ end
This helps prevent conflicts with any other engine or application that may have a post resource as well.
-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.
+Finally, two files that are the assets for this resource are generated, `app/assets/javascripts/blorgh/posts.js` and `app/assets/stylesheets/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/layouts/blorgh/application.html.erb` doesn't load it. To make this apply, insert this line into the `<head>` tag of this layout: