From 9c2223b45c94f48d35b4f661c803bc426f8e4f70 Mon Sep 17 00:00:00 2001 From: Liviu Balan Date: Sun, 11 Mar 2018 20:15:18 +0200 Subject: [PATCH] Fix typo --- service_container/shared.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service_container/shared.rst b/service_container/shared.rst index f174868aef3..7fec4267f67 100644 --- a/service_container/shared.rst +++ b/service_container/shared.rst @@ -37,5 +37,5 @@ in your service definition: $container->register(SomeNonSharedService::class) ->setShared(false); -Now, whenever you request an the ``AppBundle\SomeNonSharedService`` from the container, +Now, whenever you request the ``AppBundle\SomeNonSharedService`` from the container, you will be passed a new instance.