From: Georg Brandl Date: Sun, 6 Oct 2013 17:14:35 +0000 (+0200) Subject: Fix typo in function name. X-Git-Tag: v3.4.0a4~225^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f6d6347fc0c1e636e5d96ce760806e6572176b47;p=thirdparty%2FPython%2Fcpython.git Fix typo in function name. --- diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index de7a542474fa..03547ca4adce 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):