aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-05-17 16:48:23 -0300
committerRafael França <rafaelmfranca@gmail.com>2016-05-17 16:48:23 -0300
commitb98c1f948903cef4bdd88a8d6777e480f5770d2f (patch)
tree9a3202cd4a5c7c71f23acfee5852b07c6b83ab3a /actionview/lib
parent7e803d8b41c6ebbeabfff430a07c6a2d2d68e3ef (diff)
parent9cd790d77d30b0f2759cec6a8dcd31ac5c7c8c55 (diff)
downloadrails-b98c1f948903cef4bdd88a8d6777e480f5770d2f.tar.gz
rails-b98c1f948903cef4bdd88a8d6777e480f5770d2f.tar.bz2
rails-b98c1f948903cef4bdd88a8d6777e480f5770d2f.zip
Merge pull request #25059 from maclover7/jm-capitalize-md5
`md5` --> `MD5`
Diffstat (limited to 'actionview/lib')
-rw-r--r--actionview/lib/action_view/helpers/cache_helper.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionview/lib/action_view/helpers/cache_helper.rb b/actionview/lib/action_view/helpers/cache_helper.rb
index 4c7c4b91c6..4eaaa239e2 100644
--- a/actionview/lib/action_view/helpers/cache_helper.rb
+++ b/actionview/lib/action_view/helpers/cache_helper.rb
@@ -41,11 +41,11 @@ module ActionView
#
# ==== \Template digest
#
- # The template digest that's added to the cache key is computed by taking an md5 of the
+ # The template digest that's added to the cache key is computed by taking an MD5 of the
# contents of the entire template file. This ensures that your caches will automatically
# expire when you change the template file.
#
- # Note that the md5 is taken of the entire template file, not just what's within the
+ # Note that the MD5 is taken of the entire template file, not just what's within the
# cache do/end call. So it's possible that changing something outside of that call will
# still expire the cache.
#
@@ -118,7 +118,7 @@ module ActionView
#
# 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
+ # It doesn't really matter how you do it, but the MD5 of the template file
# must change. One recommendation is to simply be explicit in a comment, like:
#
# <%# Helper Dependency Updated: May 6, 2012 at 6pm %>