summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbhishek Ghaskata <abhishekghaskata1999@gmail.com>2020-12-15 11:35:02 +0530
committerGitHub <noreply@github.com>2020-12-15 07:05:02 +0100
commit593829a5aba605481a66c7c87e0e45061ee08bb5 (patch)
treef9e4d2ea7f0acff4a063407d0015352545a8a345
parent772eca0b0219f63129282c3596fc210951433c13 (diff)
Fixed typo in django/core/cache/backends/base.py docstring.
-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 f360f4f57a..22b8397cac 100644
--- a/django/core/cache/backends/base.py
+++ b/django/core/cache/backends/base.py
@@ -31,7 +31,7 @@ def default_key_func(key, key_prefix, version):
Default function to generate keys.
Construct the key used by all other methods. By default, prepend
- the `key_prefix'. KEY_FUNCTION can be used to specify an alternate
+ the `key_prefix`. KEY_FUNCTION can be used to specify an alternate
function with custom key making behavior.
"""
return '%s:%s:%s' % (key_prefix, version, key)