From: Mike DePalatis Date: Thu, 3 Aug 2017 14:20:42 +0000 (-0400) Subject: Improve grammar in asyncio documentation (GH-2993) X-Git-Tag: v3.7.0a1~316 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87c3c5de731af18a271f4559cd69ccb8d050208f;p=thirdparty%2FPython%2Fcpython.git Improve grammar in asyncio documentation (GH-2993) "not only is it .." is the correct form, as opposed to: "not only it is ..." --- diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index cc4a14b20162..1838eb95a7d5 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`