Skip to content

Commit

Permalink
Fix await typo in quickstart doc
Browse files Browse the repository at this point in the history
  • Loading branch information
eteamin authored and webknjaz committed Mar 14, 2019
1 parent 532322e commit 7345ffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/client_quickstart.rst
Expand Up @@ -178,7 +178,7 @@ Any of session's request methods like :func:`request`,
`json` parameter::

async with aiohttp.ClientSession() as session:
async with session.post(url, json={'test': 'object'})
await session.post(url, json={'test': 'object'})


By default session uses python's standard :mod:`json` module for
Expand Down

0 comments on commit 7345ffb

Please sign in to comment.