aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache.rb
diff options
context:
space:
mode:
authorJonathan Baudanza <jon@jonb.org>2013-09-25 16:28:21 -0700
committerJonathan Baudanza <jon@jonb.org>2013-09-25 16:28:21 -0700
commitb6f5ea22b749089e6ef9ac1dbe43bd905551d21a (patch)
tree2402a5381109118085816a3036b14912fe02949d /activesupport/lib/active_support/cache.rb
parentd1e36842ba8f3eb723fd65535cf292c898c73b68 (diff)
downloadrails-b6f5ea22b749089e6ef9ac1dbe43bd905551d21a.tar.gz
rails-b6f5ea22b749089e6ef9ac1dbe43bd905551d21a.tar.bz2
rails-b6f5ea22b749089e6ef9ac1dbe43bd905551d21a.zip
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.