summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Crowson <matthew.d.crowson@gmail.com>2015-09-16 09:19:31 -0400
committerTim Graham <timograham@gmail.com>2015-09-16 09:35:14 -0400
commit688f8de7b612545e4dd25f4707bb18ccecc255ce (patch)
treefc47397f3a5a300f21b062bf4eb47d6892778555
parente3bdbac733ac89511a6271fd5c6ed730c9cad5c6 (diff)
[1.8.x] Fixed typo in django/core/cache/backends/base.py docstring.
Backport of 8615e415861ea93afb5a84365895bd7b9af7be6f from master
-rw-r--r--django/core/cache/backends/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/cache/backends/base.py b/django/core/cache/backends/base.py
index 7ac1e5bc32..07e172e553 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.