From 635dc38fc039ec1c16f31d4a6a591ec0122836bb Mon Sep 17 00:00:00 2001 From: Philiphil Date: Wed, 21 Dec 2016 12:11:42 +0100 Subject: [PATCH] Update README.rst fixed typo --- More/ServiceLocator/README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/More/ServiceLocator/README.rst b/More/ServiceLocator/README.rst index 050f7bc..4e6a45f 100644 --- a/More/ServiceLocator/README.rst +++ b/More/ServiceLocator/README.rst @@ -4,7 +4,7 @@ **THIS IS CONSIDERED TO BE AN ANTI-PATTERN!** Service Locator is considered for some people an anti-pattern. It violates the Dependency Inversion principle. -Service Locator hides class' dependencies instead of exposing them as you would do using the Dependency Injection. In case of changes of those dependencies you risk to break the functionality of classses which are using them, making your system difficult to maintain. +Service Locator hides class' dependencies instead of exposing them as you would do using the Dependency Injection. In case of changes of those dependencies you risk to break the functionality of classes which are using them, making your system difficult to maintain. Purpose -------