From: Zachary Ware Date: Wed, 18 Dec 2013 18:21:49 +0000 (-0600) Subject: Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa. X-Git-Tag: v3.4.0b2~183^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0bffca006a94974b97db14d9cf1505560a1f94c7;p=thirdparty%2FPython%2Fcpython.git Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa. --- diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 03547ca4adce..24becf9889e3 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::