From e980575f88cecd9fa7b8ebca5b0fa89a547a1f88 Mon Sep 17 00:00:00 2001 From: Shay Palachy Date: Thu, 1 Sep 2016 17:25:54 +0300 Subject: [PATCH] Update README.rst --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index ae47009..61f38de 100644 --- a/README.rst +++ b/README.rst @@ -61,7 +61,7 @@ The positional and keyword arguments to the wrapped function must be hashable (i Setting up a Cache ~~~~~~~~~~~~~~~~~~ -You can add a deafult, pickle-based persistent cache to your function - meaning it will last across different Python kernels calling the wrapped function - by decorating it with the ``cachier`` decorator (notice the ``()``!). +You can add a deafult, pickle-based, persistent cache to your function - meaning it will last across different Python kernels calling the wrapped function - by decorating it with the ``cachier`` decorator (notice the ``()``!). .. code-block:: python @@ -76,7 +76,7 @@ You can add a deafult, pickle-based persistent cache to your function - meaning Resetting a Cache ~~~~~~~~~~~~~~~~~ -The Cachier wrapper adds a ``clear_cache()`` function to each wrapper function. To reset the cache of the wrapped function simply call this method: +The Cachier wrapper adds a ``clear_cache()`` function to each wrapped function. To reset the cache of the wrapped function simply call this method: .. code-block:: python