Update the readme
authorDaniel Greenfeld <pydanny@gmail.com>
Sat, 17 May 2014 23:19:36 +0000 (16:19 -0700)
committerDaniel Greenfeld <pydanny@gmail.com>
Sat, 17 May 2014 23:19:36 +0000 (16:19 -0700)
README.rst

index 4bf44bc93c3fa28e77dbcebff5df590686cc4476..121a9fa0d1bc0eb62214c648dd67982562a08e56 100644 (file)
@@ -73,7 +73,7 @@ Let's convert the boardwalk property into a `cached_property`.
             self.boardwalk_price += 50
             return self.boardwalk_price
 
-Now when we run it the price stays at $550. Why? because it's cached!:
+Now when we run it the price stays at $550.
 
 .. code-block:: python
 
@@ -85,8 +85,10 @@ Now when we run it the price stays at $550. Why? because it's cached!:
     >>> m.boardwalk
     550
 
+Why doesn't the value of `m.boardwalk` change? Because it's a **cached property**!:
+
 Credits
 --------
 
 * Django, Werkzueg, Bottle, and Zope for having their own implementations. This package uses the Django version.
-* Reinout Van Rees for pointing out the cached_property decorator to me.
+* Reinout Van Rees for pointing out the cached_property decorator to me.
\ No newline at end of file