From: Nick Coghlan Date: Tue, 22 May 2012 13:04:42 +0000 (+1000) Subject: Fix typo X-Git-Tag: v3.3.0a4~95 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=161ea6a349d7b6720a19708aeceec98ae03770d1;p=python Fix typo --- diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index bdcd816055..c885ff1652 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -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).