From efb2484eef1c27a7567409dd380d33ec66a569f5 Mon Sep 17 00:00:00 2001 From: Lucas Gomes Date: Thu, 16 Mar 2023 00:29:55 -0300 Subject: [PATCH] fix typo at docs --- docs/source/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):