diff options
author | Aditya Kapoor <aditya.kapoor@vinsol.com> | 2014-08-13 18:56:03 +0530 |
---|---|---|
committer | Aditya Kapoor <aditya.kapoor@vinsol.com> | 2014-08-13 18:56:03 +0530 |
commit | 2c8714568b8ef43523505cfd897ca6c569cac4ac (patch) | |
tree | 520bd7c2cc3d9172108fcee4ab36d1b130066eea | |
parent | 80cee184acfa9cc831a20aca7be13d3bc8dcf845 (diff) | |
download | rails-2c8714568b8ef43523505cfd897ca6c569cac4ac.tar.gz rails-2c8714568b8ef43523505cfd897ca6c569cac4ac.tar.bz2 rails-2c8714568b8ef43523505cfd897ca6c569cac4ac.zip |
[ci skip] correct default cache store class
-rw-r--r-- | actionpack/lib/action_controller/caching.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index 12d798d0c1..de85e0c1a7 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -16,7 +16,7 @@ module ActionController # All the caching stores from ActiveSupport::Cache are available to be used as backends # for Action Controller caching. # - # Configuration examples (MemoryStore is the default): + # Configuration examples (FileStore is the default): # # config.action_controller.cache_store = :memory_store # config.action_controller.cache_store = :file_store, '/path/to/cache/directory' |