aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/asset_pipeline.md
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-08-19 14:17:07 +0530
committerVipul A M <vipulnsward@gmail.com>2016-08-19 14:17:07 +0530
commit18e599940a6070f54c50c4f1e694aaf166cdaf9e (patch)
tree02a6ed4c8526a9a2483ff6058c14124a717a0c63 /guides/source/asset_pipeline.md
parent5b5437caebe1449a33d341036a5c0616201ab2de (diff)
downloadrails-18e599940a6070f54c50c4f1e694aaf166cdaf9e.tar.gz
rails-18e599940a6070f54c50c4f1e694aaf166cdaf9e.tar.bz2
rails-18e599940a6070f54c50c4f1e694aaf166cdaf9e.zip
When referring to Rails, be consistent in usage of capitalized form, unless it is used in context of a command like bin/rails or the rails directory [ci skip]
Diffstat (limited to 'guides/source/asset_pipeline.md')
-rw-r--r--guides/source/asset_pipeline.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md
index e6631a513c..ea787a4dc0 100644
--- a/guides/source/asset_pipeline.md
+++ b/guides/source/asset_pipeline.md
@@ -485,7 +485,7 @@ which contains these lines:
Rails creates both `app/assets/javascripts/application.js` and
`app/assets/stylesheets/application.css` regardless of whether the
---skip-sprockets option is used when creating a new rails application. This is
+--skip-sprockets option is used when creating a new Rails application. This is
so you can easily add asset pipelining later if you like.
The directives that work in JavaScript files also work in stylesheets
@@ -1024,7 +1024,7 @@ to tell our CDN (and browser) that the asset is "public", that means any cache
can store the request. Also we commonly want to set `max-age` which is how long
the cache will store the object before invalidating the cache. The `max-age`
value is set to seconds with a maximum possible value of `31536000` which is one
-year. You can do this in your rails application by setting
+year. You can do this in your Rails application by setting
```
config.public_file_server.headers = {