From c2a1351612d52c1dbb4594f85783b8ffa9fad4bc Mon Sep 17 00:00:00 2001 From: "Ngo Thanh Loi (Leonn)" Date: Fri, 21 May 2021 04:58:15 +0700 Subject: [PATCH] Fix typo (#456) --- docs/introduction/di_in_python.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/introduction/di_in_python.rst b/docs/introduction/di_in_python.rst index 09dc4109..80ede500 100644 --- a/docs/introduction/di_in_python.rst +++ b/docs/introduction/di_in_python.rst @@ -9,7 +9,7 @@ Dependency injection and inversion of control in Python Dependency Injector, its container, Factory, Singleton and Configuration providers. The example show how to use Dependency Injector providers overriding feature for testing or configuring project in different environments and explains - why it's better then monkey-patching. + why it's better than monkey-patching. Originally dependency injection pattern got popular in the languages with a static typing, like Java. Dependency injection is a principle that helps to achieve an inversion of control. @@ -29,7 +29,7 @@ contains Python examples that show how to implement dependency injection. It dem of the dependency injection framework ``Dependency Injector``, its container, ``Factory``, ``Singleton`` and ``Configuration`` providers. The example shows how to use ``Dependency Injector`` providers overriding feature for testing or configuring project in different environments and -explains why it's better then monkey-patching. +explains why it's better than monkey-patching. What is dependency injection? -----------------------------