diff options
author | Alexander Lazarov <alexander.lazaroff@gmail.com> | 2019-03-08 20:09:16 +0200 |
---|---|---|
committer | Alexander Lazarov <alexander.lazaroff@gmail.com> | 2019-03-08 20:09:16 +0200 |
commit | 5103a5ef4b2ca822b7271d5bfe6892ed3960bca3 (patch) | |
tree | 58bee0aa5ed510727abc8f0a3934f66680b9c274 /activesupport | |
parent | 4b68e6dbf40558e06a5ceb2b9e1642d798b188ad (diff) | |
download | rails-5103a5ef4b2ca822b7271d5bfe6892ed3960bca3.tar.gz rails-5103a5ef4b2ca822b7271d5bfe6892ed3960bca3.tar.bz2 rails-5103a5ef4b2ca822b7271d5bfe6892ed3960bca3.zip |
Improve wording in cache documentation [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/cache.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb index 30a69c550b..e055135bb4 100644 --- a/activesupport/lib/active_support/cache.rb +++ b/activesupport/lib/active_support/cache.rb @@ -492,7 +492,7 @@ module ActiveSupport # # Options are passed to the underlying cache implementation. # - # All implementations may not support this method. + # Some implementations may not support this method. def delete_matched(matcher, options = nil) raise NotImplementedError.new("#{self.class.name} does not support delete_matched") end @@ -501,7 +501,7 @@ module ActiveSupport # # Options are passed to the underlying cache implementation. # - # All implementations may not support this method. + # Some implementations may not support this method. def increment(name, amount = 1, options = nil) raise NotImplementedError.new("#{self.class.name} does not support increment") end @@ -510,7 +510,7 @@ module ActiveSupport # # Options are passed to the underlying cache implementation. # - # All implementations may not support this method. + # Some implementations may not support this method. def decrement(name, amount = 1, options = nil) raise NotImplementedError.new("#{self.class.name} does not support decrement") end @@ -519,7 +519,7 @@ module ActiveSupport # # Options are passed to the underlying cache implementation. # - # All implementations may not support this method. + # Some implementations may not support this method. def cleanup(options = nil) raise NotImplementedError.new("#{self.class.name} does not support cleanup") end @@ -529,7 +529,7 @@ module ActiveSupport # # The options hash is passed to the underlying cache implementation. # - # All implementations may not support this method. + # Some implementations may not support this method. def clear(options = nil) raise NotImplementedError.new("#{self.class.name} does not support clear") end |