@@ -322,7 +322,7 @@ Creating Futures and Tasks
322322
323323.. method :: loop.create_future()
324324
325- Create an :class: `asyncio.Future ` object attached to the event loop.
325+ Create a :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 an :class: `~ssl.SSLContext ` instance to enable
652+ * *ssl * can be set to a :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 an :class: `~ssl.SSLContext ` to enable SSL over
740+ * *ssl * can be set to a :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
@@ -897,7 +897,7 @@ convenient.
897897
898898 .. versionchanged :: 3.7
899899 Even though the method was always documented as a coroutine
900- method, before Python 3.7 it returned an :class: `Future `.
900+ method, before Python 3.7 it returned a :class: `Future `.
901901 Since Python 3.7, this is an ``async def `` method.
902902
903903.. coroutinemethod :: loop.sock_connect(sock, address)
0 commit comments