diff --git a/examples/providers/coroutine.py b/examples/providers/coroutine.py index 1ff89384..054173ca 100644 --- a/examples/providers/coroutine.py +++ b/examples/providers/coroutine.py @@ -10,7 +10,7 @@ import dependency_injector.providers as providers @asyncio.coroutine def coroutine_function(arg1, arg2): - """Example coroutine function.""" + """Sample coroutine function.""" yield from asyncio.sleep(0.1) return arg1, arg2 diff --git a/examples/providers/coroutine_async_await.py b/examples/providers/coroutine_async_await.py index 7b49c28b..cca13c26 100644 --- a/examples/providers/coroutine_async_await.py +++ b/examples/providers/coroutine_async_await.py @@ -9,7 +9,7 @@ import dependency_injector.providers as providers async def coroutine_function(arg1, arg2): - """Example coroutine function.""" + """Sample coroutine function.""" await asyncio.sleep(0.1) return arg1, arg2