diff --git a/docs/tutorials/aiohttp.rst b/docs/tutorials/aiohttp.rst index 3c90e6e8..f4d7cd25 100644 --- a/docs/tutorials/aiohttp.rst +++ b/docs/tutorials/aiohttp.rst @@ -922,7 +922,7 @@ We've used the ``Dependency Injector`` as a dependency injection framework. The benefit you get with the ``Dependency Injector`` is the container. It starts to payoff when you need to understand or change your application structure. It's easy with the container, -cause you have everything in one place: +cause you have everything defined explicitly in one place: .. code-block:: python diff --git a/docs/tutorials/asyncio-daemon.rst b/docs/tutorials/asyncio-daemon.rst index a6b6443a..593d2dac 100644 --- a/docs/tutorials/asyncio-daemon.rst +++ b/docs/tutorials/asyncio-daemon.rst @@ -1030,7 +1030,7 @@ We've used the ``Dependency Injector`` as a dependency injection framework. The benefit you get with the ``Dependency Injector`` is the container. It starts to payoff when you need to understand or change your application structure. It's easy with the container, -cause you have everything in one place: +cause you have everything defined explicitly in one place: .. code-block:: python diff --git a/docs/tutorials/flask.rst b/docs/tutorials/flask.rst index af3a222e..f924b1e7 100644 --- a/docs/tutorials/flask.rst +++ b/docs/tutorials/flask.rst @@ -1097,7 +1097,7 @@ In this tutorial we've built a ``Flask`` application following the dependency in We've used the ``Dependency Injector`` as a dependency injection framework. The main part of this application is the container. It keeps all the application components and -their dependencies in one place: +their dependencies defined explicitly in one place: .. code-block:: python