diff --git a/docs/client.rst b/docs/client.rst index d02fbfcc064..e4d6064cb05 100644 --- a/docs/client.rst +++ b/docs/client.rst @@ -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. @@ -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