From 8ba749f90b3c845e14fc7926d237c2637d862f2c Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Tue, 9 Sep 2025 10:49:05 +0200 Subject: [PATCH] Minor tweak --- service_container/injection_types.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/service_container/injection_types.rst b/service_container/injection_types.rst index 8f6ee2f5cc..91c2a562d8 100644 --- a/service_container/injection_types.rst +++ b/service_container/injection_types.rst @@ -1,9 +1,9 @@ Types of Injection ================== -Making a class's dependencies explicit and requiring that they must be injected -into it is a good way of making a class more reusable, testable and decoupled -from other parts of the code. +Making a class's dependencies explicit and requiring that they are injected +into it is a good way to make a class more reusable, testable, and decoupled +from the rest of the code. There are several ways that the dependencies can be injected. Each injection point has advantages and disadvantages to consider, as well as different