Commit 8615e415 authored by Matthew Crowson's avatar Matthew Crowson Committed by Tim Graham
Browse files

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

parent 91e3d121
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.