fix a document for race_condition_ttl. ActiveSupport::Cache::MemoryCache isn't exist

This commit is contained in:
kennyj 2011-10-30 01:55:09 +09:00
parent e886f97669
commit 7b65d12db5
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ module ActiveSupport
# <tt>:race_condition_ttl</tt> does not play any role.
#
# # Set all values to expire after one minute.
# cache = ActiveSupport::Cache::MemoryCache.new(:expires_in => 1.minute)
# cache = ActiveSupport::Cache::MemoryStore.new(:expires_in => 1.minute)
#
# cache.write("foo", "original value")
# val_1 = nil