summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-08-03 14:33:33 (GMT)
committerGitHub <noreply@github.com>2017-08-03 14:33:33 (GMT)
commit9b3abacf87653fab707e83b31afd73ac4140228e (patch)
tree16daee9cd757728f095992668d49c000846fb306
parent946a0b69e217ff22a6c056047eab42053e9a2d5f (diff)
downloadcpython-9b3abacf87653fab707e83b31afd73ac4140228e.zip
cpython-9b3abacf87653fab707e83b31afd73ac4140228e.tar.gz
cpython-9b3abacf87653fab707e83b31afd73ac4140228e.tar.bz2
[3.6] Improve grammar in asyncio documentation (GH-2993) (GH-2994)
"not only is it .." is the correct form, as opposed to: "not only it is ..." (cherry picked from commit 87c3c5de731af18a271f4559cd69ccb8d050208f)
-rw-r--r--Doc/library/asyncio-dev.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst
index cc4a14b..1838eb9 100644
--- a/Doc/library/asyncio-dev.rst
+++ b/Doc/library/asyncio-dev.rst
@@ -52,7 +52,7 @@ Cancellation
------------
Cancellation of tasks is not common in classic programming. In asynchronous
-programming, not only it is something common, but you have to prepare your
+programming, not only is it something common, but you have to prepare your
code to handle it.
Futures and tasks can be cancelled explicitly with their :meth:`Future.cancel`