aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache/strategy/local_cache.rb
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-11-13 22:29:26 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-11-13 22:29:26 +0530
commite0efe48c45cb02494b88636a4eefc6b37e419101 (patch)
tree60834e6da2cf4f0620ce1be1222db8fa11e18bcb /activesupport/lib/active_support/cache/strategy/local_cache.rb
parent2591cc66924d3e625ed0dc755751ac0f7c1db2d3 (diff)
parent30122307a1fe6645d6a75dedceca40a440f2f969 (diff)
downloadrails-e0efe48c45cb02494b88636a4eefc6b37e419101.tar.gz
rails-e0efe48c45cb02494b88636a4eefc6b37e419101.tar.bz2
rails-e0efe48c45cb02494b88636a4eefc6b37e419101.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'activesupport/lib/active_support/cache/strategy/local_cache.rb')
-rw-r--r--activesupport/lib/active_support/cache/strategy/local_cache.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/cache/strategy/local_cache.rb b/activesupport/lib/active_support/cache/strategy/local_cache.rb
index 0649a058aa..db5f228a70 100644
--- a/activesupport/lib/active_support/cache/strategy/local_cache.rb
+++ b/activesupport/lib/active_support/cache/strategy/local_cache.rb
@@ -4,9 +4,9 @@ require 'active_support/core_ext/string/inflections'
module ActiveSupport
module Cache
module Strategy
- # Caches that implement LocalCache will be backed by an in memory cache for the
+ # Caches that implement LocalCache will be backed by an in-memory cache for the
# duration of a block. Repeated calls to the cache for the same key will hit the
- # in memory cache for faster access.
+ # in-memory cache for faster access.
module LocalCache
# Simple memory backed cache. This cache is not thread safe and is intended only
# for serving as a temporary memory cache for a single thread.