diff options
author | Jonah Burke <jonah@jonahb.com> | 2015-08-19 14:10:42 -0400 |
---|---|---|
committer | Jonah Burke <jonah@jonahb.com> | 2015-08-19 15:26:18 -0400 |
commit | d617347be81736115ef0ea9419742dbdaa8d53ad (patch) | |
tree | 4e06181929b9dbe7f5b030c5ae25f5fe84a4cf41 /activesupport/lib/active_support | |
parent | f454ad37ed46e14eb535eb3305d2c3183a5d52f7 (diff) | |
download | rails-d617347be81736115ef0ea9419742dbdaa8d53ad.tar.gz rails-d617347be81736115ef0ea9419742dbdaa8d53ad.tar.bz2 rails-d617347be81736115ef0ea9419742dbdaa8d53ad.zip |
Correct cache store superclass in comment
Diffstat (limited to 'activesupport/lib/active_support')
-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. |