Improve grammar in asyncio documentation (GH-2993)

"not only is it .." is the correct form, as opposed to:
"not only it is ..."
This commit is contained in:
Mike DePalatis 2017-08-03 10:20:42 -04:00 committed by Mariatta
parent 5075416b8f
commit 87c3c5de73
1 changed files with 1 additions and 1 deletions

View File

@ -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`