Fix multiple typos in the `flask and aiohttp` tutorials

This commit is contained in:
Roman Mogylatov 2020-08-07 23:27:39 -04:00
parent 0198598a7c
commit e7e1493344
3 changed files with 5 additions and 4 deletions

View File

@ -11,6 +11,7 @@ Development version
-------------------
- Add ``asyncio`` + ``Dependency Injector`` example ``monitoring-daemon-asyncio``.
- Fix a typo in the docblock of the ``Configuration`` provider.
- Fix multiple typos in the ``flask`` and ``aiohttp`` tutorials.
- Fix ``Makefile`` to run ``aiohttp`` integration tests on Python 3.5+.
3.27.0

View File

@ -908,9 +908,9 @@ You should see:
Conclusion
----------
In this tutorial we've build an ``aiohttp`` REST API application following the dependency
In this tutorial we've built an ``aiohttp`` REST API application following the dependency
injection principle.
We've used ``Dependency Injector`` as a dependency injection framework.
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,

View File

@ -1085,8 +1085,8 @@ Conclusion
We are done.
In this tutorial we've build ``Flask`` application following the dependency injection principle.
We've used ``Dependency Injector`` as a dependency injection framework.
In this tutorial we've built ``Flask`` application following the dependency injection principle.
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: