Explorar el Código

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

Abhishek Ghaskata hace 4 años
padre
commit
593829a5ab
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      django/core/cache/backends/base.py

+ 1 - 1
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)