diff options
author | marload <rladhkstn8@gmail.com> | 2020-07-10 15:43:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 15:43:31 (GMT) |
commit | 6fc732a2116e2c42b0431bb7e2a21719351af755 (patch) | |
tree | 12f8840fcf0cfabcc1484294e6d394a5dca5c8e9 | |
parent | 8182cc2e68a3c6ea5d5342fed3f1c76b0521fbc1 (diff) | |
download | cpython-6fc732a2116e2c42b0431bb7e2a21719351af755.zip cpython-6fc732a2116e2c42b0431bb7e2a21719351af755.tar.gz cpython-6fc732a2116e2c42b0431bb7e2a21719351af755.tar.bz2 |
Fix typo in docs: 'created by th' -> 'created by the' (GH-21384)
-rw-r--r-- | Doc/library/asyncio-protocol.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-protocol.rst b/Doc/library/asyncio-protocol.rst index 3079716..9dbd3ab 100644 --- a/Doc/library/asyncio-protocol.rst +++ b/Doc/library/asyncio-protocol.rst @@ -993,7 +993,7 @@ loop.subprocess_exec() and SubprocessProtocol An example of a subprocess protocol used to get the output of a subprocess and to wait for the subprocess exit. -The subprocess is created by th :meth:`loop.subprocess_exec` method:: +The subprocess is created by the :meth:`loop.subprocess_exec` method:: import asyncio import sys |