[Python-checkins] ssl docs: Fix typo (GH-32336)

miss-islington webhook-mailer at python.org
Thu Apr 7 12:51:51 EDT 2022


https://github.com/python/cpython/commit/877fd622e81989e6e9cb5401ac4974c9fd5a128a
commit: 877fd622e81989e6e9cb5401ac4974c9fd5a128a
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-04-07T09:51:40-07:00
summary:

ssl docs: Fix typo (GH-32336)

(cherry picked from commit 9ee2d3a93914776d15ac5cc7c44bb3aaca3e0fe5)

Co-authored-by: Frederick <fmoor at users.noreply.github.com>

files:
M Doc/library/ssl.rst

diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 84abbaf935374..d21d6122e0a80 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -1548,7 +1548,7 @@ to speed up repeated connections from the same clients.
    string must be the path to a single file in PEM format containing the
    certificate as well as any number of CA certificates needed to establish
    the certificate's authenticity.  The *keyfile* string, if present, must
-   point to a file containing the private key in.  Otherwise the private
+   point to a file containing the private key.  Otherwise the private
    key will be taken from *certfile* as well.  See the discussion of
    :ref:`ssl-certificates` for more information on how the certificate
    is stored in the *certfile*.



More information about the Python-checkins mailing list