summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2013-12-18 18:21:49 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2013-12-18 18:21:49 (GMT)
commit0bffca006a94974b97db14d9cf1505560a1f94c7 (patch)
treebe7407e25b4874325f52955af9ba41ef062d8f2c /Doc
parent3c02ecefba5ad26af1f09ac7a2f44fbff1e2e874 (diff)
downloadcpython-0bffca006a94974b97db14d9cf1505560a1f94c7.zip
cpython-0bffca006a94974b97db14d9cf1505560a1f94c7.tar.gz
cpython-0bffca006a94974b97db14d9cf1505560a1f94c7.tar.bz2
Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa.
Diffstat (limited to 'Doc')
-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 03547ca..24becf9 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::