summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-01-06 20:55:29 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-01-06 20:55:29 (GMT)
commit388af4bb35a9d5cc379c5f30f72349611c4f28b2 (patch)
tree4011b4d29233566e9714d6dbee90fa085a75a37b
parent189c09161261c76371f6f9cd99c83a79a8247712 (diff)
downloadcpython-388af4bb35a9d5cc379c5f30f72349611c4f28b2.zip
cpython-388af4bb35a9d5cc379c5f30f72349611c4f28b2.tar.gz
cpython-388af4bb35a9d5cc379c5f30f72349611c4f28b2.tar.bz2
Typo.
-rw-r--r--Doc/whatsnew/3.2.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index ca404a3..4f42d61 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -884,8 +884,8 @@ Context managers normally have the flexibility to return an argument usable by
the :keyword:`with`-statement, but there is no parallel for function decorators.
In the above example, there is not a clean way for the *track_entry_and_exit*
-context manager does not have a way to return a logging instance for use in the
-body of enclosed statements.
+context manager to return a logging instance for use in the body of enclosed
+statements.
(Contributed by Michael Foord in :issue:`9110`.)