diff --git a/docs/source/index.rst b/docs/source/index.rst index e738ecd..3b8830d 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -83,7 +83,7 @@ But async is fun when fetching some sites at the same time: >>> async def get_google(): ... r = await asession.get('https://google.com/') - >>> session.run(get_pythonorg, get_reddit, get_google) + >>> asession.run(get_pythonorg, get_reddit, get_google) Grab a list of all links on the page, as–is (anchors excluded):