From f6d6347fc0c1e636e5d96ce760806e6572176b47 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 6 Oct 2013 19:14:35 +0200 Subject: [PATCH] Fix typo in function name. --- Doc/library/operator.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst index de7a542474f..03547ca4adc 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):