summaryrefslogtreecommitdiffstats
path: root/Doc/library/ssl.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-03-01 03:26:56 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2017-03-01 03:26:56 (GMT)
commit1cf2a809b1eb4f9fc8ac3ccc97424586892d1e1a (patch)
tree33a12cb3520fd8bfcd2288149db66b6572a378b3 /Doc/library/ssl.rst
parent626584284e74a68fff8157f9afe77b3088ff7be9 (diff)
downloadcpython-1cf2a809b1eb4f9fc8ac3ccc97424586892d1e1a.zip
cpython-1cf2a809b1eb4f9fc8ac3ccc97424586892d1e1a.tar.gz
cpython-1cf2a809b1eb4f9fc8ac3ccc97424586892d1e1a.tar.bz2
Fixed a handful of typos (GH-343)
Diffstat (limited to 'Doc/library/ssl.rst')
-rw-r--r--Doc/library/ssl.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 07b9771..7b76b2a 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -616,7 +616,7 @@ Constants
.. data:: PROTOCOL_TLS_CLIENT
- Auto-negotiate the the highest protocol version like :data:`PROTOCOL_SSLv23`,
+ Auto-negotiate the highest protocol version like :data:`PROTOCOL_SSLv23`,
but only support client-side :class:`SSLSocket` connections. The protocol
enables :data:`CERT_REQUIRED` and :attr:`~SSLContext.check_hostname` by
default.
@@ -625,7 +625,7 @@ Constants
.. data:: PROTOCOL_TLS_SERVER
- Auto-negotiate the the highest protocol version like :data:`PROTOCOL_SSLv23`,
+ Auto-negotiate the highest protocol version like :data:`PROTOCOL_SSLv23`,
but only support server-side :class:`SSLSocket` connections.
.. versionadded:: 3.6
@@ -948,7 +948,7 @@ SSL Sockets
:ref:`notes on non-blocking sockets <ssl-nonblocking>`.
Usually, :class:`SSLSocket` are not created directly, but using the
- the :meth:`SSLContext.wrap_socket` method.
+ :meth:`SSLContext.wrap_socket` method.
.. versionchanged:: 3.5
The :meth:`sendfile` method was added.