Correct 'invalidating the cache' demo in README
authorDarian Moody <mail@djm.org.uk>
Tue, 20 May 2014 20:03:47 +0000 (21:03 +0100)
committerDarian Moody <mail@djm.org.uk>
Tue, 20 May 2014 20:03:47 +0000 (21:03 +0100)
m -> monopoly.

README.rst

index 0d7d12e377e162cab8153885c1120a629f2da08e..c2b6cd94ecb05a9cac9878cab47ff4d215f2c86c 100644 (file)
@@ -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