aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache.rb
diff options
context:
space:
mode:
authorJonah Burke <jonah@jonahb.com>2015-08-19 14:10:42 -0400
committerJonah Burke <jonah@jonahb.com>2015-08-19 15:26:18 -0400
commitd617347be81736115ef0ea9419742dbdaa8d53ad (patch)
tree4e06181929b9dbe7f5b030c5ae25f5fe84a4cf41 /activesupport/lib/active_support/cache.rb
parentf454ad37ed46e14eb535eb3305d2c3183a5d52f7 (diff)
downloadrails-d617347be81736115ef0ea9419742dbdaa8d53ad.tar.gz
rails-d617347be81736115ef0ea9419742dbdaa8d53ad.tar.bz2
rails-d617347be81736115ef0ea9419742dbdaa8d53ad.zip
Correct cache store superclass in comment
Diffstat (limited to 'activesupport/lib/active_support/cache.rb')
-rw-r--r--activesupport/lib/active_support/cache.rb2
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.