diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2013-08-21 11:41:08 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2013-08-21 11:41:08 +0530 |
commit | 631a2d977016df28ccf15f894f78ccaf3dfef913 (patch) | |
tree | 06507080cce0fe45b709e6196e9d4d8865d10506 | |
parent | 9abe72c7600132aa964ca48c312ef981007ab8b1 (diff) | |
download | rails-631a2d977016df28ccf15f894f78ccaf3dfef913.tar.gz rails-631a2d977016df28ccf15f894f78ccaf3dfef913.tar.bz2 rails-631a2d977016df28ccf15f894f78ccaf3dfef913.zip |
Moved "`mod_expires` to be enabled" to new line.
- Right now the comment was not rendering properly.
# The Expires* directives requires the Apache module
`mod_expires` to be
# enabled.
- After this change -
# The Expires* directives requires the Apache module
# `mod_expires` to be enabled.
-rw-r--r-- | guides/source/asset_pipeline.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/asset_pipeline.md b/guides/source/asset_pipeline.md index 862742679c..d5f193ff06 100644 --- a/guides/source/asset_pipeline.md +++ b/guides/source/asset_pipeline.md @@ -760,8 +760,8 @@ headers. For Apache: ```apache -# The Expires* directives requires the Apache module `mod_expires` to be -# enabled. +# The Expires* directives requires the Apache module +# `mod_expires` to be enabled. <Location /assets/> # Use of ETag is discouraged when Last-Modified is present Header unset ETag FileETag None |