ssl docs: Fix typo (GH-32314)

(cherry picked from commit 1da9c38fd3)

Co-authored-by: Frederick <fmoor@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2022-04-06 18:13:46 -07:00 committed by GitHub
parent 08bd308dd2
commit b217ba7371
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.