From 36b380cae21ef5bd0a572f49653ba904d7a71f93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20Schl=C3=BCter?= Date: Fri, 27 Nov 2020 12:08:18 +0100 Subject: [PATCH] Fix code example In the code example is a colon instead of semicolon at the end of line --- service_container/tags.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service_container/tags.rst b/service_container/tags.rst index 23dd6472422..bf8f6959db4 100644 --- a/service_container/tags.rst +++ b/service_container/tags.rst @@ -800,7 +800,7 @@ array element. For example, to retrieve the ``handler_two`` handler:: { $handlers = iterator_to_array($handlers); - $handlerTwo = $handlers['handler_two']: + $handlerTwo = $handlers['handler_two']; } }