summaryrefslogtreecommitdiff
path: root/Doc/library/ssl.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2017-06-11 00:24:38 -0700
committerGitHub <noreply@github.com>2017-06-11 00:24:38 -0700
commitfdfca5f0ffa831a3365cbabf9ed8fd05e9c4da49 (patch)
tree534e08560e9b3501e80f4b72e3b8bbe72994133f /Doc/library/ssl.rst
parentdc1da9adc37abe30e97a0c2ea5331aeef7e062bc (diff)
downloadcpython-git-fdfca5f0ffa831a3365cbabf9ed8fd05e9c4da49.tar.gz
remove extra word (#2101)
Diffstat (limited to 'Doc/library/ssl.rst')
-rw-r--r--Doc/library/ssl.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index 58720ad7bb..729a239a1b 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -2112,8 +2112,8 @@ provided.
When compared to :class:`SSLSocket`, this object lacks the following
features:
- - Any form of network IO including; ``recv()`` and ``send()`` read and write
- only to the underlying :class:`MemoryBIO` buffers.
+ - Any form of network IO; ``recv()`` and ``send()`` read and write only to
+ the underlying :class:`MemoryBIO` buffers.
- There is no *do_handshake_on_connect* machinery. You must always manually
call :meth:`~SSLSocket.do_handshake` to start the handshake.