From 2377280c82eefe9e92f40bd95c5a4eb00750c3a5 Mon Sep 17 00:00:00 2001 From: Fabien Schurter Date: Sun, 28 Sep 2014 19:18:27 +0200 Subject: [PATCH] Insert a missing word MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This phrase part was missing the «it» word as a subject. New lines were reorganized a bit in order to respect the 80 character wrap length. --- components/dependency_injection/types.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/dependency_injection/types.rst b/components/dependency_injection/types.rst index 3fb9181fdea..0a1f65304b8 100644 --- a/components/dependency_injection/types.rst +++ b/components/dependency_injection/types.rst @@ -170,8 +170,8 @@ The disadvantages of setter injection are: * The setter can be called more than just at the time of construction so you cannot be sure the dependency is not replaced during the lifetime of the - object (except by explicitly writing the setter method to check if has already been - called). + object (except by explicitly writing the setter method to check if it has already + been called). * You cannot be sure the setter will be called and so you need to add checks that any required dependencies are injected.