Skip to content

Commit

Permalink
Fix missing ' in docs (#2152)
Browse files Browse the repository at this point in the history
  • Loading branch information
koole authored and asvetlov committed Aug 1, 2017
1 parent cc614ca commit a7eba82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Any of session's request methods like `request`, `get`, `post` etc accept
`json` parameter::

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


By default session uses python's standard `json` module for serialization.
Expand All @@ -66,7 +66,7 @@ parameter::
import ujson

async with aiohttp.ClientSession(json_serialize=ujson.dumps) as session:
async with session.post(json={'test': 'object})
async with session.post(json={'test': 'object'})


Passing Parameters In URLs
Expand Down

0 comments on commit a7eba82

Please sign in to comment.