aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-09-28 13:35:46 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-09-28 13:35:46 +0530
commitf3b8cd9d364934795ee4ec63a2d8852b3dde1aa8 (patch)
tree1dbbfe85286a33d14533b5183009719a3c5c21a9
parentddfa00c26614df420b80352491fd8f71f868a187 (diff)
downloadrails-f3b8cd9d364934795ee4ec63a2d8852b3dde1aa8.tar.gz
rails-f3b8cd9d364934795ee4ec63a2d8852b3dde1aa8.tar.bz2
rails-f3b8cd9d364934795ee4ec63a2d8852b3dde1aa8.zip
fixing typo in assets guide
-rw-r--r--railties/guides/source/asset_pipeline.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile
index 8a15618eb2..152f42f4eb 100644
--- a/railties/guides/source/asset_pipeline.textile
+++ b/railties/guides/source/asset_pipeline.textile
@@ -219,7 +219,7 @@ NOTE. In Rails 3.1 the +jquery-rails+ gem provides the +jquery.js+ and +jquery_u
The +require_tree+ directive tells Sprockets to recursively include _all_ JavaScript files in this directory into the output. Only a path relative to the manifest file can be specified. There is also a +require_directory+ directive which includes all JavaScript files only in the directory specified (no nesting).
-Directives are processed top to bottom, but the order in which files are included by +require_tree+ is unespecified. You should not rely on any particular order among those. If you need to ensure some particular JavaScript ends up above some other, require it before in the manifest. Note that the family of +require+ directives prevents files from being included twice in the output.
+Directives are processed top to bottom, but the order in which files are included by +require_tree+ is unspecified. You should not rely on any particular order among those. If you need to ensure some particular JavaScript ends up above some other, require it before in the manifest. Note that the family of +require+ directives prevents files from being included twice in the output.
There's also a default +app/assets/stylesheets/application.css+ file which contains these lines: