From: Georg Brandl Date: Sun, 6 Oct 2013 17:14:35 +0000 (+0200) Subject: Fix typo in function name. X-Git-Tag: v2.7.6rc1~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09289afbd4b75426cd8569bf1a8eb90b7e613acb;p=thirdparty%2FPython%2Fcpython.git Fix typo in function name. --- diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 9f17e9876756..244da144f214 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):