diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 17:14:35 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 17:14:35 (GMT) |
commit | 09289afbd4b75426cd8569bf1a8eb90b7e613acb (patch) | |
tree | b2e6fb8b756eda4272a24ef08b9a3eaaac831ec9 /Doc/library/operator.rst | |
parent | 188ddd3ba007fdd9aa489a9584c97ab1d4d75160 (diff) | |
download | cpython-09289afbd4b75426cd8569bf1a8eb90b7e613acb.zip cpython-09289afbd4b75426cd8569bf1a8eb90b7e613acb.tar.gz cpython-09289afbd4b75426cd8569bf1a8eb90b7e613acb.tar.bz2 |
Fix typo in function name.
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 9f17e98..244da14 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -514,7 +514,7 @@ expect a function argument. return resolve_attr(obj, attr) else: def g(obj): - return tuple(resolve_att(obj, attr) for attr in items) + return tuple(resolve_attr(obj, attr) for attr in items) return g def resolve_attr(obj, attr): |