aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoque Pinel <repinel@gmail.com>2016-04-07 23:16:12 -0400
committerRoque Pinel <repinel@gmail.com>2016-04-07 23:18:50 -0400
commite08232cda2efd8c25e1fb08fe7d44915a64f5106 (patch)
treece569fa190e58a257144026a3028b8684c2cc10a
parentee96c8fff4a84965943165520886a3dd0b0320a1 (diff)
downloadrails-e08232cda2efd8c25e1fb08fe7d44915a64f5106.tar.gz
rails-e08232cda2efd8c25e1fb08fe7d44915a64f5106.tar.bz2
rails-e08232cda2efd8c25e1fb08fe7d44915a64f5106.zip
Fixes for the strong & weak ETags guide [ci skip]
-rw-r--r--guides/source/caching_with_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md
index ae204a55d6..745f09f523 100644
--- a/guides/source/caching_with_rails.md
+++ b/guides/source/caching_with_rails.md
@@ -526,7 +526,7 @@ Weak ETags have a leading `W/` to differentiate them from strong ETags.
"618bbc92e2d35ea1945008b42799b0e7" → Strong ETag
```
-Unlike weak ETag, Strong ETag implies that response should be exactly same
+Unlike weak ETag, strong ETag implies that response should be exactly the same
and byte by byte identical. Useful when doing Range requests within a
large video or PDF file. Some CDNs support only strong ETags, like Akamai.
If you absolutely need to generate a strong ETag, it can be done as follows.