Skip to content

Commit

Permalink
Update introduction docs for 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmk135 committed Jun 3, 2016
1 parent 5db20f0 commit 88b5632
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/introduction/key_features.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ of Python objects and their dependencies in formal, pretty way.
*Dependency Injector* framework could be used in different application types:

+ Web applications based on Flask, Django or any other web framework.
+ Asyncronous applications based on asyncio, Tornado and Twisted.
+ Asynchronous applications based on asyncio, Tornado and Twisted.
+ Standalone frameworks and libraries.
+ GUI applications.

Expand Down
6 changes: 2 additions & 4 deletions docs/introduction/structure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interaction between each other.
:width: 100%
:align: center

There are 3 main entities: providers, containers.
There are 2 main entities: providers & containers.

Providers
~~~~~~~~~
Expand All @@ -24,9 +24,7 @@ Providers are strategies of accessing objects. For example,
:py:class:`dependency_injector.providers.Factory` creates new instance
of provided class every time it is called.
:py:class:`dependency_injector.providers.Singleton` creates provided
instance once and returns it on every next call. Providers could be
injected into each other. Providers could be overridden by another
providers. Base class is -
instance once and returns it on every next call. Base class is -
:py:class:`dependency_injector.providers.Provider`.

Providers could be:
Expand Down

0 comments on commit 88b5632

Please sign in to comment.