aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-25 16:33:35 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-25 16:33:35 -0700
commita6e1a73ffd05211e09e93fc5df4e5ef9af718b11 (patch)
tree605980b1f1f0ef088aad3b1e492030913633be31 /activesupport/lib/active_support/cache.rb
parent49d94cc4d921e43010eb992de66bea68b612bf97 (diff)
parentb6f5ea22b749089e6ef9ac1dbe43bd905551d21a (diff)
downloadrails-a6e1a73ffd05211e09e93fc5df4e5ef9af718b11.tar.gz
rails-a6e1a73ffd05211e09e93fc5df4e5ef9af718b11.tar.bz2
rails-a6e1a73ffd05211e09e93fc5df4e5ef9af718b11.zip
Merge pull request #12363 from jbaudanza/doc
Fix small typo in docs
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 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.