Fixed typo in BaseCache.delete_many() docstring.

This commit is contained in:
Matthew Madurski 2015-12-29 18:42:05 -05:00 committed by Tim Graham
parent 69208a5a1c
commit 7df9aa3a33
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ class BaseCache(object):
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
times.
"""