diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-08-27 20:54:39 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-08-27 20:54:39 (GMT) |
commit | 5e580da0b6a75c3cafecb0306c3f166d1e5d3edc (patch) | |
tree | 54a98934d042dc7d7e053e5d9c913e3615683957 | |
parent | 8e9296702acc4983cbe9258bab06652351d143f3 (diff) | |
download | cpython-5e580da0b6a75c3cafecb0306c3f166d1e5d3edc.zip cpython-5e580da0b6a75c3cafecb0306c3f166d1e5d3edc.tar.gz cpython-5e580da0b6a75c3cafecb0306c3f166d1e5d3edc.tar.bz2 |
Issue #24947: Fix grammar in asyncio doc
Patch by tagatac
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 33d3148..dee3286 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -6,7 +6,7 @@ Base Event Loop =============== The event loop is the central execution device provided by :mod:`asyncio`. -It provides multiple facilities, amongst which: +It provides multiple facilities, including: * Registering, executing and cancelling delayed calls (timeouts). |