summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-10 02:41:25 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-04-10 02:41:25 +0000
commit3872d62133f03a6c8292ee2f97999597f90f9082 (patch)
tree1d052e08d56e76dfb4eb9bbd93e2abe136f54433
parentdb3e2bd82dd8e319bc924b85ad830f1768b8577f (diff)
downloadcpython-git-3872d62133f03a6c8292ee2f97999597f90f9082.tar.gz
Issue #25609: Double back-ticks to avoid “make check” buildbot failure
-rw-r--r--Doc/whatsnew/3.6.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index d217c4d09a..9be1a9c291 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -196,7 +196,7 @@ contextlib
The :class:`contextlib.AbstractContextManager` class has been added to
provide an abstract base class for context managers. It provides a
sensible default implementation for `__enter__()` which returns
-`self` and leaves `__exit__()` an abstract method. A matching
+``self`` and leaves `__exit__()` an abstract method. A matching
class has been added to the :mod:`typing` module as
:class:`typing.ContextManager`.
(Contributed by Brett Cannon in :issue:`25609`.)