aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJingwen Owen Ou <jingweno@gmail.com>2014-02-17 12:05:00 -0800
committerJingwen Owen Ou <jingweno@gmail.com>2014-02-20 07:37:05 -0800
commitb7aeab6a40353a7953d28daea24197fd6b656c8e (patch)
tree58d9872becffb56204623117758ca72990337c08 /guides
parenta2075f4142355900bf9e3d19c70248f614363a39 (diff)
downloadrails-b7aeab6a40353a7953d28daea24197fd6b656c8e.tar.gz
rails-b7aeab6a40353a7953d28daea24197fd6b656c8e.tar.bz2
rails-b7aeab6a40353a7953d28daea24197fd6b656c8e.zip
[skip ci] Fix the javascript path in guide for asset modules
Diffstat (limited to 'guides')
-rw-r--r--guides/source/asset_pipeline.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md
index fa2e57ff92..5bb895cb78 100644
--- a/guides/source/asset_pipeline.md
+++ b/guides/source/asset_pipeline.md
@@ -302,7 +302,7 @@ Sprockets uses files named `index` (with the relevant extensions) for a special
purpose.
For example, if you have a jQuery library with many modules, which is stored in
-`lib/assets/library_name`, the file `lib/assets/library_name/index.js` serves as
+`lib/assets/javascripts/library_name`, the file `lib/assets/javascripts/library_name/index.js` serves as
the manifest for all files in this library. This file could include a list of
all the required files in order, or a simple `require_tree` directive.