From 09289afbd4b75426cd8569bf1a8eb90b7e613acb 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 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): -- 2.50.1