diff options
author | Marc Chung <mchung@gmail.com> | 2009-01-04 15:19:06 -0700 |
---|---|---|
committer | Marc Chung <mchung@gmail.com> | 2009-01-04 15:19:06 -0700 |
commit | 609a6cb76228acdfe1f3d14cbbdff60d05f549ee (patch) | |
tree | fa00ce3e7a21a773c93f6550fb80ca891ca369f6 | |
parent | 25183221971c8b75051d9e6d19d204a53dec55e4 (diff) | |
download | rails-609a6cb76228acdfe1f3d14cbbdff60d05f549ee.tar.gz rails-609a6cb76228acdfe1f3d14cbbdff60d05f549ee.tar.bz2 rails-609a6cb76228acdfe1f3d14cbbdff60d05f549ee.zip |
Correctly formatted comment
-rw-r--r-- | actionpack/lib/action_view/helpers/asset_tag_helper.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb index 0633d5414e..e595c534dd 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb @@ -95,11 +95,11 @@ module ActionView # It's the responsibility of the web server you use to set the far-future expiration date on cache assets that you need to take # advantage of this feature. Here's an example for Apache: # - # # Asset Expiration - # ExpiresActive On - # <FilesMatch "\.(ico|gif|jpe?g|png|js|css)$"> - # ExpiresDefault "access plus 1 year" - # </FilesMatch> + # # Asset Expiration + # ExpiresActive On + # <FilesMatch "\.(ico|gif|jpe?g|png|js|css)$"> + # ExpiresDefault "access plus 1 year" + # </FilesMatch> # # Also note that in order for this to work, all your application servers must return the same timestamps. This means that they must # have their clocks synchronized. If one of them drift out of sync, you'll see different timestamps at random and the cache won't |