From 9d328e2ba76ab65cfed1da621097f1ede7c1b81f Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Wed, 12 Aug 2020 16:35:23 -0400 Subject: [PATCH] Update some wording in the other tutorials --- docs/tutorials/aiohttp.rst | 2 +- docs/tutorials/asyncio-daemon.rst | 2 +- docs/tutorials/flask.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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