summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2021-12-23 10:25:12 (GMT)
committerGitHub <noreply@github.com>2021-12-23 10:25:12 (GMT)
commitcf15419a99962b3503ff7123e148d71f7f01bc15 (patch)
treedc339d6d5d3b70feb233767a14cc0b50b1b18947
parent71ef0b4c2b77195bb1adc42602549284f7ee9566 (diff)
downloadcpython-cf15419a99962b3503ff7123e148d71f7f01bc15.zip
cpython-cf15419a99962b3503ff7123e148d71f7f01bc15.tar.gz
cpython-cf15419a99962b3503ff7123e148d71f7f01bc15.tar.bz2
typos (#30239)
-rw-r--r--Doc/library/asyncio-eventloop.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index c25b3e8..5b48945 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -322,7 +322,7 @@ Creating Futures and Tasks
.. method:: loop.create_future()
- Create a :class:`asyncio.Future` object attached to the event loop.
+ Create an :class:`asyncio.Future` object attached to the event loop.
This is the preferred way to create Futures in asyncio. This lets
third-party event loops provide alternative implementations of
@@ -649,7 +649,7 @@ Creating network servers
* *backlog* is the maximum number of queued connections passed to
:meth:`~socket.socket.listen` (defaults to 100).
- * *ssl* can be set to a :class:`~ssl.SSLContext` instance to enable
+ * *ssl* can be set to an :class:`~ssl.SSLContext` instance to enable
TLS over the accepted connections.
* *reuse_address* tells the kernel to reuse a local socket in
@@ -737,7 +737,7 @@ Creating network servers
* *sock* is a preexisting socket object returned from
:meth:`socket.accept <socket.socket.accept>`.
- * *ssl* can be set to a :class:`~ssl.SSLContext` to enable SSL over
+ * *ssl* can be set to an :class:`~ssl.SSLContext` to enable SSL over
the accepted connections.
* *ssl_handshake_timeout* is (for an SSL connection) the time in seconds to