]> granicus.if.org Git - python/commitdiff
Fix typo
authorNick Coghlan <ncoghlan@gmail.com>
Tue, 22 May 2012 13:04:42 +0000 (23:04 +1000)
committerNick Coghlan <ncoghlan@gmail.com>
Tue, 22 May 2012 13:04:42 +0000 (23:04 +1000)
Doc/whatsnew/3.3.rst

index bdcd816055ee6ea82bd7f2aed8a1095f7e1b8414..c885ff165246239e54cbddcc23eb9934ab845db2 100644 (file)
@@ -704,7 +704,7 @@ programmatic manipulation of context managers and similar cleanup
 functionality. Unlike the previous ``contextlib.nested`` API (which was
 deprecated and removed), the new API is designed to work correctly
 regardless of whether context managers acquire their resources in
-their ``__init`` method (for example, file objects) or in their
+their ``__init__`` method (for example, file objects) or in their
 ``__enter__`` method (for example, synchronisation objects from the
 :mod:`threading` module).