aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorAlexey Vakhov <vakhov@gmail.com>2012-05-25 10:23:44 +0400
committerAlexey Vakhov <vakhov@gmail.com>2012-05-25 10:23:44 +0400
commit05ae220d2e3de751486951a88800e98f0c1014fa (patch)
tree544aae966e125fbe5efcbaf19bc56f20f750bd4b /activesupport
parent0b11840d1b3b0e17f4e26c3e6d499622b6c4fe9f (diff)
downloadrails-05ae220d2e3de751486951a88800e98f0c1014fa.tar.gz
rails-05ae220d2e3de751486951a88800e98f0c1014fa.tar.bz2
rails-05ae220d2e3de751486951a88800e98f0c1014fa.zip
Fix ActiveSupport Cache decrement method description
Diffstat (limited to 'activesupport')
-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 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.
#