[Python-checkins] Fix download.html (GH-18902)

Miss Islington (bot) webhook-mailer at python.org
Wed Mar 11 00:40:22 EDT 2020


https://github.com/python/cpython/commit/76a69ddbb64ebceff0bdde5ee0e74d5650667705
commit: 76a69ddbb64ebceff0bdde5ee0e74d5650667705
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-03-10T21:40:17-07:00
summary:

Fix download.html (GH-18902)


`<tt>` is not allowed.

Co-authored-by: Kyle Stanley <aeros167 at gmail.com>
(cherry picked from commit 39c34933fc958fd773ebf14ccd2e0224450b17ed)

Co-authored-by: Inada Naoki <songofacandy at gmail.com>

files:
M Doc/tools/templates/download.html

diff --git a/Doc/tools/templates/download.html b/Doc/tools/templates/download.html
index d9364d6ced729..987c63a7f3575 100644
--- a/Doc/tools/templates/download.html
+++ b/Doc/tools/templates/download.html
@@ -40,7 +40,7 @@ <h1>Download Python {{ release }} Documentation</h1>
 
 <p>These archives contain all the content in the documentation.</p>
 
-<p>HTML Help (<tt>.chm</tt>) files are made available in the "Windows" section
+<p>HTML Help (<code>.chm</code>) files are made available in the "Windows" section
 on the <a href="https://www.python.org/downloads/release/python-{{ release.replace('.', '') }}/">Python
 download page</a>.</p>
 



More information about the Python-checkins mailing list