aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache.rb
diff options
context:
space:
mode:
authorRyan L. Cross <rcross@cylence.com>2010-10-24 19:17:49 -0700
committerRyan L. Cross <rcross@cylence.com>2010-10-24 19:17:49 -0700
commit67c40160d384037d664952cee808a49104bdc627 (patch)
treefeb9f096a2a73c073373dd2c20946e3ae69b07eb /activesupport/lib/active_support/cache.rb
parent6492a2bd2198e38f374611b7c10fd976a2867b29 (diff)
downloadrails-67c40160d384037d664952cee808a49104bdc627.tar.gz
rails-67c40160d384037d664952cee808a49104bdc627.tar.bz2
rails-67c40160d384037d664952cee808a49104bdc627.zip
Corrected typo and wording.
Diffstat (limited to 'activesupport/lib/active_support/cache.rb')
-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 9098ffbfec..9771ca966f 100644
--- a/activesupport/lib/active_support/cache.rb
+++ b/activesupport/lib/active_support/cache.rb
@@ -214,7 +214,7 @@ module ActiveSupport
# cache.write(key, value, :expire_in => 1.minute) # Set a lower value for one entry
#
# Setting <tt>:race_condition_ttl</tt> is very useful in situations where a cache entry
- # is used very frequently unver heavy load. If a cache expires and due to heavy load
+ # is used very frequently and is under heavy load. If a cache expires and due to heavy load
# seven 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>. Yes