diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2013-12-18 18:22:35 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2013-12-18 18:22:35 (GMT) |
commit | e61f4df2752a4b3e42e549da0772dccf42fed69c (patch) | |
tree | 4e8f952d06639cca578d3344ee6c07fba7cd5203 /Doc/library/operator.rst | |
parent | 3f5f436680248d42dafa1d69119ae7c6b434a2c9 (diff) | |
parent | 0bffca006a94974b97db14d9cf1505560a1f94c7 (diff) | |
download | cpython-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.rst | 2 |
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:: |