Final Readme tweak of the day
authorDaniel Greenfeld <pydanny@gmail.com>
Sat, 17 May 2014 23:36:42 +0000 (16:36 -0700)
committerDaniel Greenfeld <pydanny@gmail.com>
Sat, 17 May 2014 23:36:42 +0000 (16:36 -0700)
README.rst

index 928072086ecfae1bb2ea20192b2869ca4efd05f3..4bb0a564e22868ed6d66af5cd03b079529b23875 100644 (file)
@@ -27,8 +27,8 @@ Why?
 How to use it
 --------------
 
-Define a class with an expensive property. Every time you stay there the 
-price goes up by $50. I
+Let's define a class with an expensive property. Every time you stay there the 
+price goes up by $50!
 
 .. code-block:: python
 
@@ -48,10 +48,10 @@ Now run it:
 
 .. code-block:: python
 
-    >>> m = Monopoly()
-    >>> m.boardwalk
+    >>> monopoly = Monopoly()
+    >>> monopoly.boardwalk
     550
-    >>> m.boardwalk
+    >>> monopoly.boardwalk
     600
 
 Let's convert the boardwalk property into a `cached_property`.
@@ -77,12 +77,12 @@ Now when we run it the price stays at $550.
 
 .. code-block:: python
 
-    >>> m = Monopoly()
-    >>> m.boardwalk
+    >>> monopoly = Monopoly()
+    >>> monopoly.boardwalk
     550
-    >>> m.boardwalk
+    >>> monopoly.boardwalk
     550
-    >>> m.boardwalk
+    >>> monopoly.boardwalk
     550
 
 Why doesn't the value of `m.boardwalk` change? Because it's a **cached property**!
@@ -92,4 +92,4 @@ 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.
-* My awesome wife Audrey who created cookiecutter, which meant rolling this out took me just 15 minutes.
\ No newline at end of file
+* My awesome wife Audrey who created cookiecutter, which meant rolling this out took me just 15 minutes.