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)