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

index bb50ca95e50dfec80e467b71e46b4e8c4b7ed1a3..04d052645e0b3c61285c507b1b11a07c16e8f149 100644 (file)
@@ -63,8 +63,8 @@ Let's convert the boardwalk property into a `cached_property`.
         def __init__(self):
             self.boardwalk_price = 500
 
-        @property
-        def cached_property(self):
+        @cached_property
+        def boardwalk(self):
             # Again, this is a silly example. Don't worry about it, this is
             #   just an example for clarity.
             self.boardwalk_price += 50
@@ -82,7 +82,7 @@ Now when we run it the price stays at $550.
     >>> monopoly.boardwalk
     550
 
-Why doesn't the value of `m.boardwalk` change? Because it's a **cached property**!
+Why doesn't the value of `monopoly.boardwalk` change? Because it's a **cached property**!
 
 Credits
 --------