aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache/mem_cache_store.rb
diff options
context:
space:
mode:
authorCheah Chu Yeow <chuyeow@gmail.com>2011-11-11 17:04:50 +0800
committerCheah Chu Yeow <chuyeow@gmail.com>2011-11-11 17:04:50 +0800
commite34e4d43301618307f94123d3710f094297f91f3 (patch)
treee959ff0ff5384f054f60c2ea9f38163cce9823ce /activesupport/lib/active_support/cache/mem_cache_store.rb
parentb9aaa317cfa56a68b406181a93d9e11b8560f9a1 (diff)
downloadrails-e34e4d43301618307f94123d3710f094297f91f3.tar.gz
rails-e34e4d43301618307f94123d3710f094297f91f3.tar.bz2
rails-e34e4d43301618307f94123d3710f094297f91f3.zip
Fix "in memory" where it should be "in-memory".
Diffstat (limited to 'activesupport/lib/active_support/cache/mem_cache_store.rb')
-rw-r--r--activesupport/lib/active_support/cache/mem_cache_store.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache/mem_cache_store.rb b/activesupport/lib/active_support/cache/mem_cache_store.rb
index e07294178b..5234cdb4ce 100644
--- a/activesupport/lib/active_support/cache/mem_cache_store.rb
+++ b/activesupport/lib/active_support/cache/mem_cache_store.rb
@@ -21,7 +21,7 @@ module ActiveSupport
# server goes down, then MemCacheStore will ignore it until it comes back up.
#
# MemCacheStore implements the Strategy::LocalCache strategy which implements
- # an in memory cache inside of a block.
+ # an in-memory cache inside of a block.
class MemCacheStore < Store
module Response # :nodoc:
STORED = "STORED\r\n"