aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/layouts_and_rendering.md
diff options
context:
space:
mode:
authorJuanito Fatas <katehuang0320@gmail.com>2015-09-24 14:28:56 +0800
committerJuanito Fatas <katehuang0320@gmail.com>2015-09-24 14:28:56 +0800
commitcb45950c279ed8fa9f952ec2ec976719c1b466a2 (patch)
tree8f9250560345151a80213fb9d3c96a9099e00e27 /guides/source/layouts_and_rendering.md
parente86ef22cd41671c693f972799ca2bee501cbcbcf (diff)
downloadrails-cb45950c279ed8fa9f952ec2ec976719c1b466a2.tar.gz
rails-cb45950c279ed8fa9f952ec2ec976719c1b466a2.tar.bz2
rails-cb45950c279ed8fa9f952ec2ec976719c1b466a2.zip
Add a missing period to layouts_and_rendering.md [ci skip]
Diffstat (limited to 'guides/source/layouts_and_rendering.md')
-rw-r--r--guides/source/layouts_and_rendering.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/layouts_and_rendering.md b/guides/source/layouts_and_rendering.md
index b425eb126a..8dd7f396b8 100644
--- a/guides/source/layouts_and_rendering.md
+++ b/guides/source/layouts_and_rendering.md
@@ -781,7 +781,7 @@ The `javascript_include_tag` helper returns an HTML `script` tag for each source
If you are using Rails with the [Asset Pipeline](asset_pipeline.html) enabled, this helper will generate a link to `/assets/javascripts/` rather than `public/javascripts` which was used in earlier versions of Rails. This link is then served by the asset pipeline.
-A JavaScript file within a Rails application or Rails engine goes in one of three locations: `app/assets`, `lib/assets` or `vendor/assets`. These locations are explained in detail in the [Asset Organization section in the Asset Pipeline Guide](asset_pipeline.html#asset-organization)
+A JavaScript file within a Rails application or Rails engine goes in one of three locations: `app/assets`, `lib/assets` or `vendor/assets`. These locations are explained in detail in the [Asset Organization section in the Asset Pipeline Guide](asset_pipeline.html#asset-organization).
You can specify a full path relative to the document root, or a URL, if you prefer. For example, to link to a JavaScript file that is inside a directory called `javascripts` inside of one of `app/assets`, `lib/assets` or `vendor/assets`, you would do this: