diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-08-20 09:43:02 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-08-20 09:43:02 +0200 |
commit | 013dd756e1ca730d95f13f334e02470ce528354b (patch) | |
tree | 5fb4b394e8c7614fbeac0d2d490cfb1453cd21a6 /activesupport | |
parent | c83b117d4b8b6e78ba503d2744b640cc71fd8e8f (diff) | |
parent | d617347be81736115ef0ea9419742dbdaa8d53ad (diff) | |
download | rails-013dd756e1ca730d95f13f334e02470ce528354b.tar.gz rails-013dd756e1ca730d95f13f334e02470ce528354b.tar.bz2 rails-013dd756e1ca730d95f13f334e02470ce528354b.zip |
Merge pull request #21300 from jonahb/cache
Correct cache store superclass in comment [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/cache.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb index 837974bc85..8253a76383 100644 --- a/activesupport/lib/active_support/cache.rb +++ b/activesupport/lib/active_support/cache.rb @@ -26,7 +26,7 @@ module ActiveSupport end class << self - # Creates a new CacheStore object according to the given options. + # Creates a new Store object according to the given options. # # If no arguments are passed to this method, then a new # ActiveSupport::Cache::MemoryStore object will be returned. |