summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2014-01-20 15:51:31 (GMT)
committerEli Bendersky <eliben@gmail.com>2014-01-20 15:51:31 (GMT)
commit3245e79b823d9060b03666148a1b937b118259cb (patch)
treef67c8e193bc7b01999d345fb3ce787237180e658 /Doc
parent029981bbfc58f53db01672846d8e31b345824652 (diff)
downloadcpython-3245e79b823d9060b03666148a1b937b118259cb.zip
cpython-3245e79b823d9060b03666148a1b937b118259cb.tar.gz
cpython-3245e79b823d9060b03666148a1b937b118259cb.tar.bz2
Formatting & rst link markup fixes
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/asyncio-protocol.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst
index 00e4250..4672e58 100644
--- a/Doc/library/asyncio-protocol.rst
+++ b/Doc/library/asyncio-protocol.rst
@@ -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