diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-31 11:48:53 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-31 11:48:53 (GMT) |
commit | 1f1177d69a21805c374b6b4cfce9f9f76bceb822 (patch) | |
tree | 14d59076b529affba00fd59610399131db4d1dc7 /Doc/library | |
parent | 3e8a7ad7fc6224f8cae7d1c43d676d2093442611 (diff) | |
download | cpython-1f1177d69a21805c374b6b4cfce9f9f76bceb822.zip cpython-1f1177d69a21805c374b6b4cfce9f9f76bceb822.tar.gz cpython-1f1177d69a21805c374b6b4cfce9f9f76bceb822.tar.bz2 |
Fix some spelling errors in documentation and code comments
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/ssl.rst | 2 | ||||
-rw-r--r-- | Doc/library/tracemalloc.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 233de8d..b0cf4eb 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -827,7 +827,7 @@ SSL sockets also have the following additional methods and attributes: The :meth:`~SSLSocket.read` and :meth:`~SSLSocket.write` methods are the low-level methods that read and write unencrypted, application-level data - and and decrypt/encrypt it to encrypted, wire-level data. These methods + and decrypt/encrypt it to encrypted, wire-level data. These methods require an active SSL connection, i.e. the handshake was completed and :meth:`SSLSocket.unwrap` was not called. diff --git a/Doc/library/tracemalloc.rst b/Doc/library/tracemalloc.rst index a04a432..cd62e55 100644 --- a/Doc/library/tracemalloc.rst +++ b/Doc/library/tracemalloc.rst @@ -460,7 +460,7 @@ Snapshot All inclusive filters are applied at once, a trace is ignored if no inclusive filters match it. A trace is ignored if at least one exclusive - filter matchs it. + filter matches it. .. classmethod:: load(filename) |