diff options
author | Alexey Vakhov <vakhov@gmail.com> | 2012-05-25 10:23:44 +0400 |
---|---|---|
committer | Alexey Vakhov <vakhov@gmail.com> | 2012-05-25 10:23:44 +0400 |
commit | 05ae220d2e3de751486951a88800e98f0c1014fa (patch) | |
tree | 544aae966e125fbe5efcbaf19bc56f20f750bd4b | |
parent | 0b11840d1b3b0e17f4e26c3e6d499622b6c4fe9f (diff) | |
download | rails-05ae220d2e3de751486951a88800e98f0c1014fa.tar.gz rails-05ae220d2e3de751486951a88800e98f0c1014fa.tar.bz2 rails-05ae220d2e3de751486951a88800e98f0c1014fa.zip |
Fix ActiveSupport Cache decrement method description
-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 55791bfa56..a62214d604 100644 --- a/activesupport/lib/active_support/cache.rb +++ b/activesupport/lib/active_support/cache.rb @@ -405,7 +405,7 @@ module ActiveSupport raise NotImplementedError.new("#{self.class.name} does not support increment") end - # Increment an integer value in the cache. + # Decrement an integer value in the cache. # # Options are passed to the underlying cache implementation. # |