1
0
mirror of https://github.com/django/django.git synced 2025-06-05 03:29:12 +00:00

[1.8.x] Fixed typo in BaseCache.delete_many() docstring.

Backport of 7df9aa3a33271706bf172eac77b5b0d02c971d77 from master
This commit is contained in:
Matthew Madurski 2015-12-29 18:42:05 -05:00 committed by Tim Graham
parent 83174866ac
commit cef1bc87f9

View File

@ -195,7 +195,7 @@ class BaseCache(object):
def delete_many(self, keys, version=None): def delete_many(self, keys, version=None):
""" """
Set a bunch of values in the cache at once. For certain backends Delete a bunch of values in the cache at once. For certain backends
(memcached), this is much more efficient than calling delete() multiple (memcached), this is much more efficient than calling delete() multiple
times. times.
""" """