From ccf06453065cc6e923fa7e1af6cd71b75cf3308d Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Sat, 11 Feb 2023 13:35:16 +0100 Subject: [PATCH] Remove stray reST markup from README (#213) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 684ef55..7e76e81 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Injector - Python dependency injection framework, inspired by Guice Introduction ------------ -While dependency injection is easy to do in Python due to its support for keyword arguments, the ease with which objects can be mocked and its dynamic nature, a framework for assisting in this process can remove a lot of boiler-plate from larger applications. That's where Injector can help. It automatically and transitively provides dependencies for you. As an added benefit, Injector encourages nicely compartmentalised code through the use of :ref:`modules `. +While dependency injection is easy to do in Python due to its support for keyword arguments, the ease with which objects can be mocked and its dynamic nature, a framework for assisting in this process can remove a lot of boiler-plate from larger applications. That's where Injector can help. It automatically and transitively provides dependencies for you. As an added benefit, Injector encourages nicely compartmentalised code through the use of modules. If you're not sure what dependency injection is or you'd like to learn more about it see: