From 0bffca006a94974b97db14d9cf1505560a1f94c7 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Wed, 18 Dec 2013 12:21:49 -0600 Subject: Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa. --- Doc/library/operator.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 03547ca4ad..24becf9889 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:: -- cgit v1.2.1