summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/operator.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index 03547ca..24becf9 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -254,7 +254,7 @@ expect a function argument.
``(b.name, b.date)``.
* After ``f = attrgetter('name.first', 'name.last')``, the call ``f(b)``
- returns ``(r.name.first, r.name.last)``.
+ returns ``(b.name.first, b.name.last)``.
Equivalent to::