diff options
author | Jonathan Baudanza <jon@jonb.org> | 2013-09-25 16:28:21 -0700 |
---|---|---|
committer | Jonathan Baudanza <jon@jonb.org> | 2013-09-25 16:28:21 -0700 |
commit | b6f5ea22b749089e6ef9ac1dbe43bd905551d21a (patch) | |
tree | 2402a5381109118085816a3036b14912fe02949d | |
parent | d1e36842ba8f3eb723fd65535cf292c898c73b68 (diff) | |
download | rails-b6f5ea22b749089e6ef9ac1dbe43bd905551d21a.tar.gz rails-b6f5ea22b749089e6ef9ac1dbe43bd905551d21a.tar.bz2 rails-b6f5ea22b749089e6ef9ac1dbe43bd905551d21a.zip |
Fix small typo in docs
-rw-r--r-- | activesupport/lib/active_support/cache.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb index 308a1b2cd9..c5633d902f 100644 --- a/activesupport/lib/active_support/cache.rb +++ b/activesupport/lib/active_support/cache.rb @@ -234,7 +234,7 @@ module ActiveSupport # bump the cache expiration time by the value set in <tt>:race_condition_ttl</tt>. # Yes, this process is extending the time for a stale value by another few # seconds. Because of extended life of the previous cache, other processes - # will continue to use slightly stale data for a just a big longer. In the + # will continue to use slightly stale data for a just a bit longer. In the # meantime that first process will go ahead and will write into cache the # new value. After that all the processes will start getting new value. # The key is to keep <tt>:race_condition_ttl</tt> small. |