RST cleanups
authorDaniel Greenfeld <danny@eventbrite.com>
Fri, 13 Feb 2015 19:12:28 +0000 (11:12 -0800)
committerDaniel Greenfeld <danny@eventbrite.com>
Fri, 13 Feb 2015 19:12:28 +0000 (11:12 -0800)
HISTORY.rst
README.rst

index 60bf2eb86e7018db2b1f8bb7225e5967654a19a6..cdc0f91e841d1a25e29493d9732cde5084fb87ea 100644 (file)
@@ -7,7 +7,7 @@ History
 ++++++++++++++++++
 
 * Added timed to expire feature to ``cached_property`` decorator.
-* Changed ``del monopoly.boardwalk`` to ``del monopoly['boardwalk'] in order to support the new TTL feature.
+* Changed ``del monopoly.boardwalk`` to ``del monopoly['boardwalk']`` in order to support the new TTL feature.
 
 0.1.5 (2014-05-20)
 ++++++++++++++++++
index bbdb552fc0f8cb5e928e77eea096c3c1e481e1c8..f63ecc37ad904b8d9a398f4ec508cb606763765c 100644 (file)
@@ -4,7 +4,7 @@ cached-property
 
 .. image:: https://badge.fury.io/py/cached-property.png
     :target: http://badge.fury.io/py/cached-property
-    
+
 .. image:: https://travis-ci.org/pydanny/cached-property.png?branch=master
         :target: https://travis-ci.org/pydanny/cached-property
 
@@ -110,7 +110,7 @@ Timing out the cache
 Sometimes you want the price of things to reset after a time. 
 
 .. code-block:: python
-    
+
     import random
     from cached_property import cached_property
 
@@ -121,6 +121,8 @@ Sometimes you want the price of things to reset after a time.
             # I dare the reader to implement a game using this method of 'rolling dice'.
             return random.randint(2,12)
 
+Now use it:
+
 .. code-block:: python
 
     >>> monopoly = Monopoly()