diff options
author | Sam Umbach <sumbach@gmail.com> | 2011-07-16 21:02:36 -0700 |
---|---|---|
committer | Sam Umbach <sumbach@gmail.com> | 2011-07-16 21:02:36 -0700 |
commit | ade629e206d17c2aa321de9c53a0a68310e2f865 (patch) | |
tree | 3e33d6cf4889b354be0ca57c3ad6d4330bcf8b07 | |
parent | 86869a09eec2eac76e57c04b785c9b4443ad2c72 (diff) | |
download | rails-ade629e206d17c2aa321de9c53a0a68310e2f865.tar.gz rails-ade629e206d17c2aa321de9c53a0a68310e2f865.tar.bz2 rails-ade629e206d17c2aa321de9c53a0a68310e2f865.zip |
Fix typo
-rw-r--r-- | railties/guides/source/asset_pipeline.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/asset_pipeline.textile b/railties/guides/source/asset_pipeline.textile index 01ccabda87..925f95eaac 100644 --- a/railties/guides/source/asset_pipeline.textile +++ b/railties/guides/source/asset_pipeline.textile @@ -44,7 +44,7 @@ h4. What is fingerprinting and why should I care? Fingerprinting is a technique where the filenames of content that is static or infrequently updated is altered to be unique to the content contained in the file. -When a filename is unique and based on its content, http headers can be set to encourage caches everywhere (at ISPs, in browsers) to keep there own copy of the content. When the content is updated, the fingerprint will change and the remote clients will request the new file. This is generally known as _cachebusting_. +When a filename is unique and based on its content, http headers can be set to encourage caches everywhere (at ISPs, in browsers) to keep their own copy of the content. When the content is updated, the fingerprint will change and the remote clients will request the new file. This is generally known as _cachebusting_. The most effective technique is to insert a hash of the content into the name, usually at the end. For example a CSS file +global.css+ is hashed and the filename is updated to incorporate the hash. |