From 4adf5518c546eb9cee2de2e5fa903cfe2ceb9369 Mon Sep 17 00:00:00 2001 From: Shay Palachy Date: Fri, 20 Mar 2020 15:17:05 +0200 Subject: [PATCH] doc fix --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 4dec744..e90dcb8 100644 --- a/README.rst +++ b/README.rst @@ -133,7 +133,7 @@ Further function calls made while the calculation is being performed will not tr Working with unhashable arguments --------------------------------- -As mentioned above, The positional and keyword arguments to the wrapped function must be hashable (i.e. Python's immutable built-in objects, not mutable containers). To get around this limitation the ``hash_params`` parameter of the ``cachier`` decorator can be provided with a callable that gets the args and kwargs from the decorated function and returns a hash key for them. +As mentioned above, the positional and keyword arguments to the wrapped function must be hashable (i.e. Python's immutable built-in objects, not mutable containers). To get around this limitation the ``hash_params`` parameter of the ``cachier`` decorator can be provided with a callable that gets the args and kwargs from the decorated function and returns a hash key for them. .. code-block:: python