diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-07-17 10:03:47 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-07-17 10:03:47 +0000 |
commit | e51221871c661cc4e057871fc31d5793f6e992bf (patch) | |
tree | 5d5f7097db34cb70c602ace7d951f6d178812c96 /actionpack/lib | |
parent | 33cf8f162e1ea2c10e6ba253b333f256802c3250 (diff) | |
download | rails-e51221871c661cc4e057871fc31d5793f6e992bf.tar.gz rails-e51221871c661cc4e057871fc31d5793f6e992bf.tar.bz2 rails-e51221871c661cc4e057871fc31d5793f6e992bf.zip |
Fix doc typos #1734 [moriq@moriq.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1853 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/caching.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index 20a4d7aba1..0868e896b7 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -232,7 +232,7 @@ module ActionController #:nodoc: # up a lot of memory since each process keeps all the caches in memory. # * DRbStore: Keeps the fragments in the memory of a separate, shared DRb process. This works for all environments and only keeps one cache # around for all processes, but requires that you run and manage a separate DRb process. - # * MemCachedStore: Works like DRbStore, but uses Danga's MemCached instead. + # * MemCacheStore: Works like DRbStore, but uses Danga's MemCache instead. # # Configuration examples (MemoryStore is the default): # @@ -246,7 +246,7 @@ module ActionController #:nodoc: # ActionController::Caching::Fragments::DRbStore.new("druby://localhost:9192") # # ActionController::Base.fragment_cache_store = - # ActionController::Caching::Fragments::FileStore.new("localhost") + # ActionController::Caching::Fragments::MemCacheStore.new("localhost") module Fragments def self.append_features(base) #:nodoc: super |