From b98035d0d785f6c7b50979a5c929e1bea92f60e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n?= Date: Fri, 5 May 2017 22:54:10 -0300 Subject: [PATCH] Update definitions.rst Typo here... should't be singular? --- service_container/definitions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service_container/definitions.rst b/service_container/definitions.rst index cb894ad3b2d..6f214843edd 100644 --- a/service_container/definitions.rst +++ b/service_container/definitions.rst @@ -31,7 +31,7 @@ There are some helpful methods for working with the service definitions:: // get the definition with the "app.user_config_manager" ID or alias $definition = $container->findDefinition('app.user_config_manager'); - // add a new "app.number_generator" definitions + // add a new "app.number_generator" definition $definition = new Definition(\AppBundle\NumberGenerator::class); $container->setDefinition('app.number_generator', $definition);