From 7cf3a44c06132819667a5d5c7ef6b6822393061b Mon Sep 17 00:00:00 2001 From: Robert Impey Date: Wed, 30 Nov 2022 14:26:25 +0000 Subject: [PATCH] Fix spelling in comment --- CH_02_01_end.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CH_02_01_end.py b/CH_02_01_end.py index b79aaf9..e86b0a1 100644 --- a/CH_02_01_end.py +++ b/CH_02_01_end.py @@ -33,7 +33,7 @@ async def main(): fetch_coroutines = [] for url in urls: fetch_coroutines.append(fetch_args(session, url)) - # waik up coroutines with gather + # wake up coroutines with gather data = await asyncio.gather(*fetch_coroutines) pprint(data)