summaryrefslogtreecommitdiffstats
path: root/Doc/library/operator.rst
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2013-12-18 18:22:35 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2013-12-18 18:22:35 (GMT)
commite61f4df2752a4b3e42e549da0772dccf42fed69c (patch)
tree4e8f952d06639cca578d3344ee6c07fba7cd5203 /Doc/library/operator.rst
parent3f5f436680248d42dafa1d69119ae7c6b434a2c9 (diff)
parent0bffca006a94974b97db14d9cf1505560a1f94c7 (diff)
downloadcpython-e61f4df2752a4b3e42e549da0772dccf42fed69c.zip
cpython-e61f4df2752a4b3e42e549da0772dccf42fed69c.tar.gz
cpython-e61f4df2752a4b3e42e549da0772dccf42fed69c.tar.bz2
Closes #20005: Fix typo in operator docs. Patch by Claudiu Popa.
Diffstat (limited to 'Doc/library/operator.rst')
-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 80bad71..fa3bcdd 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::