From a7eba82a4f9b8d0fdacad9f9cd27fa0ffe5ad4b0 Mon Sep 17 00:00:00 2001 From: Leon Koole Date: Tue, 1 Aug 2017 16:28:59 +0200 Subject: [PATCH] Fix missing ' in docs (#2152) --- docs/client.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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