From: Darian Moody Date: Tue, 20 May 2014 20:03:47 +0000 (+0100) Subject: Correct 'invalidating the cache' demo in README X-Git-Tag: 1.0.0~12^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8ad8f3f49e700bc50d9e03fffbc4ae00bb34f187;p=cached-property.git Correct 'invalidating the cache' demo in README m -> monopoly. --- diff --git a/README.rst b/README.rst index 0d7d12e..c2b6cd9 100644 --- a/README.rst +++ b/README.rst @@ -97,11 +97,11 @@ Results of cached functions can be invalidated by outside forces. Let's demonstr >>> monopoly.boardwalk 550 >>> # invalidate the cache - >>> del m.boardwalk + >>> del monopoly.boardwalk >>> # request the boardwalk property again - >>> m.boardwalk + >>> monopoly.boardwalk 600 - >>> m.boardwalk + >>> monopoly.boardwalk 600 Working with Threads