diff --git a/docs/spelling_wordlist.txt b/docs/spelling_wordlist.txt index 915a169c9ec..865e7d5d630 100644 --- a/docs/spelling_wordlist.txt +++ b/docs/spelling_wordlist.txt @@ -5,7 +5,6 @@ aioes aiohttp aiohttpdemo aiohttp’s -aiopg alives api api’s @@ -16,6 +15,7 @@ arg Arsenic async asyncio +asyncpg asynctest auth autocalculated diff --git a/docs/web_advanced.rst b/docs/web_advanced.rst index d85ca21f566..23d3b7707f7 100644 --- a/docs/web_advanced.rst +++ b/docs/web_advanced.rst @@ -266,7 +266,7 @@ and get it back in the :term:`web-handler`:: async def handler(request): data = request.app['my_private_key'] -Rather than using :class:`str` keys, we recommend using :class:`web.AppKey`. +Rather than using :class:`str` keys, we recommend using :class:`AppKey`. This is required for type safety (e.g. when checking with mypy):: my_private_key = web.AppKey("my_private_key", str)