summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2013-12-18 12:22:35 -0600
committerZachary Ware <zachary.ware@gmail.com>2013-12-18 12:22:35 -0600
commite61f4df2752a4b3e42e549da0772dccf42fed69c (patch)
tree4e8f952d06639cca578d3344ee6c07fba7cd5203
parent3f5f436680248d42dafa1d69119ae7c6b434a2c9 (diff)
parent0bffca006a94974b97db14d9cf1505560a1f94c7 (diff)
downloadcpython-git-e61f4df2752a4b3e42e549da0772dccf42fed69c.tar.gz
Closes #20005: Fix typo in operator docs. Patch by Claudiu Popa.
-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 80bad7142c..fa3bcddac1 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -265,7 +265,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::