diff options
author | Andre Delfino <adelfino@gmail.com> | 2019-03-10 11:02:17 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-03-10 11:02:17 (GMT) |
commit | 11205b80309a01666eefee2301a244aa73a4c450 (patch) | |
tree | e41ceeb491d21fe582ee78d1e070b3c7e687e663 /Doc | |
parent | 8b91edadc06dcb0d391a65d1ecdf07dcb429df1b (diff) | |
download | cpython-11205b80309a01666eefee2301a244aa73a4c450.zip cpython-11205b80309a01666eefee2301a244aa73a4c450.tar.gz cpython-11205b80309a01666eefee2301a244aa73a4c450.tar.bz2 |
Fix padding on asyncio.IncompleteReadError docs (GH-12258)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asyncio-exceptions.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/asyncio-exceptions.rst b/Doc/library/asyncio-exceptions.rst index dbd5df7..e49577a 100644 --- a/Doc/library/asyncio-exceptions.rst +++ b/Doc/library/asyncio-exceptions.rst @@ -65,11 +65,11 @@ Exceptions .. exception:: IncompleteReadError - The requested read operation did not complete fully. + The requested read operation did not complete fully. - Raised by the :ref:`asyncio stream APIs<asyncio-streams>`. + Raised by the :ref:`asyncio stream APIs<asyncio-streams>`. - This exception is a subclass of :exc:`EOFError`. + This exception is a subclass of :exc:`EOFError`. .. attribute:: expected |