diff --git a/README.rst b/README.rst index eafb0e42..9604c0ee 100644 --- a/README.rst +++ b/README.rst @@ -63,7 +63,7 @@ code becomes more flexible, clear and it is easier to test it. How to implement dependency injection? -------------------------------------- -Objects do not create each other anymore. They provide a way to inject the needed dependency +Objects do not create each other anymore. They provide a way to inject the needed dependencies instead. Before: @@ -224,7 +224,7 @@ How does it different from the other frameworks? ``Dependency Injector`` makes a simple contract with you: -- You tell the framework how to build you code +- You tell the framework how to assemble your objects - The framework does it for you The power of the ``Dependency Injector`` is in its simplicity and straightforwardness. It is a simple tool for the powerful concept. diff --git a/docs/index.rst b/docs/index.rst index a4f77569..168ef255 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -76,7 +76,7 @@ How does it different from the other frameworks? ``Dependency Injector`` makes a simple contract with you: -- You tell the framework how to build you code +- You tell the framework how to assemble your objects - The framework does it for you The power of the ``Dependency Injector`` is in its simplicity and straightforwardness. It is a simple tool for the powerful concept. diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 7d6c7f9b..c7bb5358 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -7,6 +7,10 @@ that were made in every particular version. From version 0.7.6 *Dependency Injector* framework strictly follows `Semantic versioning`_ +3.32.3 +------ +- Fix few typos on README and docs main pages. + 3.32.2 ------ - Make a fix in the factory delegation example (thanks to diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index b08f32e1..d08495b0 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Dependency injector top-level package.""" -__version__ = '3.32.2' +__version__ = '3.32.3' """Version number that follows semantic versioning. :type: str