diff options
author | C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> | 2022-10-17 23:49:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-17 23:49:38 (GMT) |
commit | ea19c28512b4bd815834de064cf0ef9803cc03a2 (patch) | |
tree | 706715f97eb50e3b7ab6f4316dbc0c12eae373ea /Doc/whatsnew/2.7.rst | |
parent | 9cb30bb339fedf76cb7c3950114bb07c5d35efeb (diff) | |
download | cpython-ea19c28512b4bd815834de064cf0ef9803cc03a2.zip cpython-ea19c28512b4bd815834de064cf0ef9803cc03a2.tar.gz cpython-ea19c28512b4bd815834de064cf0ef9803cc03a2.tar.bz2 |
[3.11] Docs: Fix backtick errors found by sphinx-lint (GH-97998) (#98371)
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>.
(cherry picked from commit fa2d43e5184f5eaf3391844ec2400342a1b2ead4)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc/whatsnew/2.7.rst')
-rw-r--r-- | Doc/whatsnew/2.7.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index 3df9f8a..82f5ea3 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -2485,8 +2485,8 @@ In the standard library: * The ElementTree library, :mod:`xml.etree`, no longer escapes ampersands and angle brackets when outputting an XML processing - instruction (which looks like `<?xml-stylesheet href="#style1"?>`) - or comment (which looks like `<!-- comment -->`). + instruction (which looks like ``<?xml-stylesheet href="#style1"?>``) + or comment (which looks like ``<!-- comment -->``). (Patch by Neil Muller; :issue:`2746`.) * The :meth:`~StringIO.StringIO.readline` method of :class:`~StringIO.StringIO` objects now does |