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 | f6d6347fc0c1e636e5d96ce760806e6572176b47 (patch) | |
tree | 0bfb31636f5463d54e66b91b32d31b6c500a024f /Doc | |
parent | ffb94ae46f91343ce989242641dd3e022e58623f (diff) | |
download | cpython-f6d6347fc0c1e636e5d96ce760806e6572176b47.zip cpython-f6d6347fc0c1e636e5d96ce760806e6572176b47.tar.gz cpython-f6d6347fc0c1e636e5d96ce760806e6572176b47.tar.bz2 |
Fix typo in function name.
Diffstat (limited to 'Doc')
-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 de7a542..03547ca 100644 --- a/Doc/library/operator.rst +++ b/Doc/library/operator.rst @@ -267,7 +267,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): |