aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJon Moss <maclover7@users.noreply.github.com>2016-05-16 17:02:50 -0400
committerJon Moss <maclover7@users.noreply.github.com>2016-05-16 17:02:50 -0400
commit07ba8a4f6ad5fe36d92c2c865a8aad2583d62b80 (patch)
tree70f0b5a826988ca13d1b3d67c91cbf1498a754a0 /guides
parenta3aa53684eb8c39db4aa03bc69b8ee15deadeb80 (diff)
parent303dac30c2424d33b9bd9970a0c192193a525f2a (diff)
downloadrails-07ba8a4f6ad5fe36d92c2c865a8aad2583d62b80.tar.gz
rails-07ba8a4f6ad5fe36d92c2c865a8aad2583d62b80.tar.bz2
rails-07ba8a4f6ad5fe36d92c2c865a8aad2583d62b80.zip
Merge pull request #25036 from maclover7/jm-capitalization
`md5` --> `MD5`
Diffstat (limited to 'guides')
-rw-r--r--guides/source/caching_with_rails.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md
index 745f09f523..6c734c1d78 100644
--- a/guides/source/caching_with_rails.md
+++ b/guides/source/caching_with_rails.md
@@ -100,8 +100,8 @@ called key-based expiration.
Cache fragments will also be expired when the view fragment changes (e.g., the
HTML in the view changes). The string of characters at the end of the key is a
-template tree digest. It is an md5 hash computed based on the contents of the
-view fragment you are caching. If you change the view fragment, the md5 hash
+template tree digest. It is an MD5 hash computed based on the contents of the
+view fragment you are caching. If you change the view fragment, the MD5 hash
will change, expiring the existing file.
TIP: Cache stores like Memcached will automatically delete old cache files.
@@ -258,7 +258,7 @@ comment format anywhere in the template, like:
If you use a helper method, for example, inside a cached block and you then update
that helper, you'll have to bump the cache as well. It doesn't really matter how
-you do it, but the md5 of the template file must change. One recommendation is to
+you do it, but the MD5 of the template file must change. One recommendation is to
simply be explicit in a comment, like:
```html+erb