From b56c517b05c34dbb8a56f2dac938c0679405d9e9 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Wed, 18 Dec 2013 12:18:36 -0600 Subject: [PATCH] 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 244da144f2..0b46504214 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -503,7 +503,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:: -- 2.50.1