From 8615e415861ea93afb5a84365895bd7b9af7be6f Mon Sep 17 00:00:00 2001 From: Matthew Crowson Date: Wed, 16 Sep 2015 09:19:31 -0400 Subject: Fixed typo in django/core/cache/backends/base.py docstring. --- django/core/cache/backends/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/cache/backends/base.py b/django/core/cache/backends/base.py index e10149648a..7835c9793a 100644 --- a/django/core/cache/backends/base.py +++ b/django/core/cache/backends/base.py @@ -91,7 +91,7 @@ class BaseCache(object): def make_key(self, key, version=None): """Constructs the key used by all other methods. By default it uses the key_func to generate a key (which, by default, - prepends the `key_prefix' and 'version'). An different key + prepends the `key_prefix' and 'version'). A different key function can be provided at the time of cache construction; alternatively, you can subclass the cache backend to provide custom key making behavior. -- cgit v1.2.1