https://github.com/python/cpython/commit/9b3abacf87653fab707e83b31afd73ac414... commit: 9b3abacf87653fab707e83b31afd73ac4140228e branch: 3.6 author: Mariatta <Mariatta@users.noreply.github.com> committer: GitHub <noreply@github.com> date: 2017-08-04T00:33:33+10:00 summary: [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) files: M Doc/library/asyncio-dev.rst diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index cc4a14b2016..1838eb95a7d 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`