Issue #25609: Double back-ticks to avoid “make check” buildbot failure
authorMartin Panter <vadmium+py@gmail.com>
Sun, 10 Apr 2016 02:41:25 +0000 (02:41 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sun, 10 Apr 2016 02:41:25 +0000 (02:41 +0000)
Doc/whatsnew/3.6.rst

index d217c4d09a0e13972b5271f70fd938a7ebd66764..9be1a9c2912d21a47b8d32b4b16f84000f5f654e 100644 (file)
@@ -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`.)