From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 7 Apr 2022 01:13:46 +0000 (-0700) Subject: ssl docs: Fix typo (GH-32314) X-Git-Tag: v3.10.5~191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b217ba7371a780ad014e4ed5695ab8d0a2ea588e;p=thirdparty%2FPython%2Fcpython.git ssl docs: Fix typo (GH-32314) (cherry picked from commit 1da9c38fd352465fd3d1a00e64dc90444b421730) Co-authored-by: Frederick --- diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 3531cc3413af..84abbaf93537 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1397,7 +1397,7 @@ SSL sockets also have the following additional methods and attributes: .. method:: SSLSocket.version() Return the actual SSL protocol version negotiated by the connection - as a string, or ``None`` is no secure connection is established. + as a string, or ``None`` if no secure connection is established. As of this writing, possible return values include ``"SSLv2"``, ``"SSLv3"``, ``"TLSv1"``, ``"TLSv1.1"`` and ``"TLSv1.2"``. Recent OpenSSL versions may define more return values.