From fce4e5447e339c5e44114b2eeabe691bade8d066 Mon Sep 17 00:00:00 2001 From: Eduardo Klosowski Date: Thu, 17 May 2018 14:49:00 -0300 Subject: [PATCH] Fix markup in "Introducing Services and the ServiceManager" --- docs/src/in-depth-guide/services-and-servicemanager.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/in-depth-guide/services-and-servicemanager.rst b/docs/src/in-depth-guide/services-and-servicemanager.rst index af097fc95..f117c496c 100644 --- a/docs/src/in-depth-guide/services-and-servicemanager.rst +++ b/docs/src/in-depth-guide/services-and-servicemanager.rst @@ -528,7 +528,7 @@ always inject this using Dependency Injection as we have learned above. Let's im Now this looks complicated! Let's start to look at the ``$realServiceLocator``. When using a Factory-Class that will be called from the ``ControllerManager`` it will actually inject **itself** as the ``$serviceLocator``. However, we need the real -``ServiceManager`` to get to our Service-Classes. This is why we call the function ``getServiceLocator()` who will give us +``ServiceManager`` to get to our Service-Classes. This is why we call the function ``getServiceLocator()`` who will give us the real ``ServiceManager``. After we have the ``$realServiceLocator`` set up we try to get a Service called ``Blog\Service\PostServiceInterface``.