From b4023e36b57aea832dbef09771d97329294a2586 Mon Sep 17 00:00:00 2001 From: William Martin Stewart Date: Fri, 3 Apr 2015 00:56:22 +0200 Subject: [PATCH] Fix typo in readme example --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index f63ecc3..e1b78e7 100644 --- a/README.rst +++ b/README.rst @@ -116,7 +116,7 @@ Sometimes you want the price of things to reset after a time. class Monopoly(object): - @cached_property(ttl=5) # cache invalidates after 10 seconds + @cached_property(ttl=5) # cache invalidates after 5 seconds def dice(self): # I dare the reader to implement a game using this method of 'rolling dice'. return random.randint(2,12) -- 2.30.2