Skip to content

Commit

Permalink
docs: Fix reported typos in aiohttp docs
Browse files Browse the repository at this point in the history
  • Loading branch information
paveldedik authored and Stranger6667 committed Aug 2, 2019
1 parent 1ff561c commit 4d90a6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/useragents.rst
Expand Up @@ -58,7 +58,7 @@ For async applications using :mod:`aiohttp` as an HTTP client, you can use the

from kw.platform.aiohttp import KiwiClientSession

async with aiohttp.KiwiClientSession() as client:
async with KiwiClientSession() as client:
async with client.get("https://api.example.com") as resp:
html = await resp.text()
print(html)
Expand Down
1 change: 1 addition & 0 deletions kw/platform/aiohttp/session.py
Expand Up @@ -21,6 +21,7 @@ class KiwiClientSession(aiohttp.ClientSession):
Usage::
from kw.platform.aiohttp import KiwiClientSession
async with KiwiClientSession() as c:
await c.get('https://kiwi.com')
"""
Expand Down

0 comments on commit 4d90a6d

Please sign in to comment.