Fix syntax error (#582)

This commit is contained in:
Davydenko Myroslav 2018-02-27 20:36:10 +02:00 committed by Chris Angelico
parent 26e3060152
commit 2d317ff215
1 changed files with 1 additions and 1 deletions

View File

@ -1409,7 +1409,7 @@ for example::
c = None # type: Coroutine[List[str], str, int]
...
x = c.send('hi') # type: List[str]
async def bar(): -> None:
async def bar() -> None:
x = await c # type: int
The module also provides generic ABCs ``Awaitable``,