diff --git a/src/cachetools_async/decorators.py b/src/cachetools_async/decorators.py index 281db95..6cb7e06 100644 --- a/src/cachetools_async/decorators.py +++ b/src/cachetools_async/decorators.py @@ -76,7 +76,7 @@ async def wrapper(*args, **kwargs): loop = get_event_loop() - # Crete a task that tracks the coroutine execution + # Create a task that tracks the coroutine execution task = loop.create_task(coro) # Create a future and then tie the future and task together @@ -143,7 +143,7 @@ async def wrapper(self, *args, **kwargs): loop = get_event_loop() - # Crete a task that tracks the coroutine execution + # Create a task that tracks the coroutine execution task = loop.create_task(coro) # Create a future and then tie the future and task together