aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2014-08-13 15:02:31 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2014-08-13 15:02:31 -0300
commit2750cc41484266c731c4bf0460d74b0de49e7450 (patch)
tree72da8ff4a311b4640b2286db3eff9270aba55f78
parent1a299b6ca6c6be6a22b86acac7cefd59c56b5b8e (diff)
parent2c8714568b8ef43523505cfd897ca6c569cac4ac (diff)
downloadrails-2750cc41484266c731c4bf0460d74b0de49e7450.tar.gz
rails-2750cc41484266c731c4bf0460d74b0de49e7450.tar.bz2
rails-2750cc41484266c731c4bf0460d74b0de49e7450.zip
Merge pull request #16493 from aditya-kapoor/correct-cache-store-doc
[ci skip] correct default cache store class
-rw-r--r--actionpack/lib/action_controller/caching.rb2
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'