diff --git a/README.md b/README.md index 5839e7a..8ce3f86 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ Point(x=1, y=2) 1 >>> getattr(p, 'y') 2 ->>> Point._fields # Or: p._fields +>>> p._fields # Or: Point._fields ('x', 'y') ```