]> granicus.if.org Git - python/commitdiff
Formatting & rst link markup fixes
authorEli Bendersky <eliben@gmail.com>
Mon, 20 Jan 2014 15:51:31 +0000 (07:51 -0800)
committerEli Bendersky <eliben@gmail.com>
Mon, 20 Jan 2014 15:51:31 +0000 (07:51 -0800)
Doc/library/asyncio-protocol.rst

index 00e42505902b3b7f530e2431e0defc9bb6e47997..4672e587765032a34f9544e9edfb81e476cdc9be 100644 (file)
@@ -532,10 +532,11 @@ Network functions
 
 .. function:: open_connection(host=None, port=None, *, loop=None, limit=_DEFAULT_LIMIT, **kwds)
 
-   A wrapper for create_connection() returning a (reader, writer) pair.
+   A wrapper for :meth:`~BaseEventLoop.create_connection()` returning a (reader,
+   writer) pair.
 
-   The reader returned is a StreamReader instance; the writer is a
-   :class:`Transport`.
+   The reader returned is a :class:`StreamReader` instance; the writer is a
+   transport.
 
    The arguments are all the usual arguments to
    :meth:`BaseEventLoop.create_connection` except *protocol_factory*; most