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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=09289afbd4b75426cd8569bf1a8eb90b7e613acb;p=python Fix typo in function name. --- diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index 9f17e98767..244da144f2 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):