]> granicus.if.org Git - python/commitdiff
Fix typo in function name.
authorGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 17:14:35 +0000 (19:14 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 17:14:35 +0000 (19:14 +0200)
Doc/library/operator.rst

index 9f17e987675626e692fa1b25711d21c2a56ae997..244da144f214aed8c7d794eb5e34eac844aae752 100644 (file)
@@ -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):