From: Mariatta Date: Thu, 3 Aug 2017 14:33:33 +0000 (+1000) Subject: [3.6] Improve grammar in asyncio documentation (GH-2993) (GH-2994) X-Git-Tag: v3.6.3rc1~174 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b3abacf87653fab707e83b31afd73ac4140228e;p=python [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) --- diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index cc4a14b201..1838eb95a7 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`