Update some wording in the other tutorials

This commit is contained in:
Roman Mogylatov 2020-08-12 16:35:23 -04:00
parent 8e8f266fdf
commit 9d328e2ba7
3 changed files with 3 additions and 3 deletions

View File

@ -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 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, 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 .. code-block:: python

View File

@ -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 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, 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 .. code-block:: python

View File

@ -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. 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 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 .. code-block:: python