From d8a522bc696d7454c278fc4a8d83a0c782164d26 Mon Sep 17 00:00:00 2001 From: Pierre Date: Wed, 1 Apr 2020 16:37:55 +0200 Subject: [PATCH] Fixes wrong tag for RouteLoaderInterface registration without autoconfiguration --- routing/custom_route_loader.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routing/custom_route_loader.rst b/routing/custom_route_loader.rst index 8a66b15e38f..753d67d0139 100644 --- a/routing/custom_route_loader.rst +++ b/routing/custom_route_loader.rst @@ -214,7 +214,7 @@ extend or implement any special class, but the called method must return a If you're using :ref:`autoconfigure `, your class should implement the :class:`Symfony\\Bundle\\FrameworkBundle\\Routing\\RouteLoaderInterface` interface to be tagged automatically. If you're **not using autoconfigure**, -tag it manually with ``routing.loader``. +tag it manually with ``routing.route_loader``. .. note::