Fixed typo in django/core/cache/backends/base.py docstring.

This commit is contained in:
Abhishek Ghaskata 2020-12-15 11:35:02 +05:30 committed by GitHub
parent 772eca0b02
commit 593829a5ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)