aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authordickeyxxx <jeff@dickey.xxx>2013-05-23 12:40:08 -0700
committerdickeyxxx <jeff@dickey.xxx>2013-05-23 12:40:08 -0700
commit21586d364bd760b98173254f509fc6ab3b2e3f44 (patch)
treef14fd1a84970a906bd9cc7d8abc828f894a61e96 /activesupport/lib
parent14f70dfae144f917f099266082cc7a7c9dd065e4 (diff)
downloadrails-21586d364bd760b98173254f509fc6ab3b2e3f44.tar.gz
rails-21586d364bd760b98173254f509fc6ab3b2e3f44.tar.bz2
rails-21586d364bd760b98173254f509fc6ab3b2e3f44.zip
correction on cache.fetch race_condition_ttl
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/cache.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb
index b1ab5570a8..c539048a85 100644
--- a/activesupport/lib/active_support/cache.rb
+++ b/activesupport/lib/active_support/cache.rb
@@ -228,7 +228,7 @@ module ActiveSupport
#
# Setting <tt>:race_condition_ttl</tt> is very useful in situations where
# a cache entry is used very frequently and is under heavy load. If a
- # cache expires and due to heavy load seven different processes will try
+ # cache expires and due to heavy load several different processes will try
# to read data natively and then they all will try to write to cache. To
# avoid that case the first process to find an expired cache entry will
# bump the cache expiration time by the value set in <tt>:race_condition_ttl</tt>.