1
0
mirror of https://github.com/django/django.git synced 2025-04-01 20:16:43 +00:00

[1.11.x] Fixed typo in docs/topics/cache.txt.

Backport of e7adad27f30396823f3609fcb8699cefb25278bb from master
This commit is contained in:
tk 2017-09-19 05:52:01 -05:00 committed by Tim Graham
parent cee07ba088
commit 979d2ebea6

View File

@ -895,7 +895,7 @@ from the cache, not just the keys set by your application. ::
You can also increment or decrement a key that already exists using the
``incr()`` or ``decr()`` methods, respectively. By default, the existing cache
value will incremented or decremented by 1. Other increment/decrement values
value will be incremented or decremented by 1. Other increment/decrement values
can be specified by providing an argument to the increment/decrement call. A
ValueError will be raised if you attempt to increment or decrement a
nonexistent cache key.::