From 73f14b5a40e837ab736675bf2433eeb4b8719655 Mon Sep 17 00:00:00 2001 From: Jonathan Schoonhoven Date: Tue, 10 Mar 2026 10:33:17 -0700 Subject: [PATCH] Fix typo in comment: "Crete" -> "Create" Co-Authored-By: Claude Opus 4.6 --- src/cachetools_async/decorators.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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