summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFrederick <fmoor@users.noreply.github.com>2022-04-07 00:51:35 (GMT)
committerGitHub <noreply@github.com>2022-04-07 00:51:35 (GMT)
commit1da9c38fd352465fd3d1a00e64dc90444b421730 (patch)
treeeca0af30b4d510392744d0f2eef2c02a44e5fdba /Doc
parent63bd72448a5af01206c2a9aec5f1ed1e903f1e12 (diff)
downloadcpython-1da9c38fd352465fd3d1a00e64dc90444b421730.zip
cpython-1da9c38fd352465fd3d1a00e64dc90444b421730.tar.gz
cpython-1da9c38fd352465fd3d1a00e64dc90444b421730.tar.bz2
ssl docs: Fix typo (GH-32314)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/ssl.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 8e5554e..ce9b71f 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.