diff --git a/src/synchronicity/async_wrap.py b/src/synchronicity/async_wrap.py index 27f92b0..45718c7 100644 --- a/src/synchronicity/async_wrap.py +++ b/src/synchronicity/async_wrap.py @@ -39,7 +39,7 @@ async def wrapper(*args, **kwargs): def is_coroutine_function_follow_wrapped(func: typing.Callable) -> bool: - """Determine if a function returns a coroutine, unwrapping decorators, but not the async synchronicity interace.""" + """Determine if func returns a coroutine, unwrapping decorators, but not the async synchronicity interace.""" from .synchronizer import TARGET_INTERFACE_ATTR # Avoid circular import if hasattr(func, "__wrapped__") and getattr(func, TARGET_INTERFACE_ATTR, None) != Interface.BLOCKING: @@ -48,7 +48,7 @@ def is_coroutine_function_follow_wrapped(func: typing.Callable) -> bool: def is_async_gen_function_follow_wrapped(func: typing.Callable) -> bool: - """Determine if a function returns an async generator, unwrapping decorators, but not the async synchronicity interace.""" + """Determine if func returns an async generator, unwrapping decorators, but not the async synchronicity interace.""" from .synchronizer import TARGET_INTERFACE_ATTR # Avoid circular import if hasattr(func, "__wrapped__") and getattr(func, TARGET_INTERFACE_ATTR, None) != Interface.BLOCKING: