File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ Creating Futures and Tasks
322
322
323
323
.. method :: loop.create_future()
324
324
325
- Create a :class: `asyncio.Future ` object attached to the event loop.
325
+ Create an :class: `asyncio.Future ` object attached to the event loop.
326
326
327
327
This is the preferred way to create Futures in asyncio. This lets
328
328
third-party event loops provide alternative implementations of
@@ -649,7 +649,7 @@ Creating network servers
649
649
* *backlog * is the maximum number of queued connections passed to
650
650
:meth: `~socket.socket.listen ` (defaults to 100).
651
651
652
- * *ssl * can be set to a :class: `~ssl.SSLContext ` instance to enable
652
+ * *ssl * can be set to an :class: `~ssl.SSLContext ` instance to enable
653
653
TLS over the accepted connections.
654
654
655
655
* *reuse_address * tells the kernel to reuse a local socket in
@@ -737,7 +737,7 @@ Creating network servers
737
737
* *sock * is a preexisting socket object returned from
738
738
:meth: `socket.accept <socket.socket.accept> `.
739
739
740
- * *ssl * can be set to a :class: `~ssl.SSLContext ` to enable SSL over
740
+ * *ssl * can be set to an :class: `~ssl.SSLContext ` to enable SSL over
741
741
the accepted connections.
742
742
743
743
* *ssl_handshake_timeout * is (for an SSL connection) the time in seconds to
You can’t perform that action at this time.
0 commit comments