From: Zachary Ware Date: Wed, 18 Dec 2013 18:18:36 +0000 (-0600) Subject: Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa. X-Git-Tag: v2.7.8~184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b56c517b05c34dbb8a56f2dac938c0679405d9e9;p=python Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa. --- 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::