fix typo at docs

This commit is contained in:
Lucas Gomes
2023-03-16 00:29:55 -03:00
parent 87a047d4ad
commit efb2484eef
+1 -1
View File
@@ -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, asis (anchors excluded):