File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 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
322322
323323.. method :: loop.create_future()
324324
325- Create a :class: `asyncio.Future ` object attached to the event loop.
325+ Create an :class: `asyncio.Future ` object attached to the event loop.
326326
327327 This is the preferred way to create Futures in asyncio. This lets
328328 third-party event loops provide alternative implementations of
@@ -649,7 +649,7 @@ Creating network servers
649649 * *backlog * is the maximum number of queued connections passed to
650650 :meth: `~socket.socket.listen ` (defaults to 100).
651651
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
653653 TLS over the accepted connections.
654654
655655 * *reuse_address * tells the kernel to reuse a local socket in
@@ -737,7 +737,7 @@ Creating network servers
737737 * *sock * is a preexisting socket object returned from
738738 :meth: `socket.accept <socket.socket.accept> `.
739739
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
741741 the accepted connections.
742742
743743 * *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