From ef3563657cf5fd5b499f73604a5de5da22d2349f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20M=C3=B6nch?= Date: Thu, 8 Feb 2024 12:08:54 +0100 Subject: [PATCH] Fix translator cache_dir default value reference According to https://github.com/symfony/symfony/blob/5.4/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php#L831 is the default value without a `/` at the end. --- reference/configuration/framework.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/configuration/framework.rst b/reference/configuration/framework.rst index bbbbe41c419..7ffb0826ae8 100644 --- a/reference/configuration/framework.rst +++ b/reference/configuration/framework.rst @@ -2508,7 +2508,7 @@ translator cache_dir ......... -**type**: ``string`` | ``null`` **default**: ``%kernel.cache_dir%/translations/`` +**type**: ``string`` | ``null`` **default**: ``%kernel.cache_dir%/translations`` Defines the directory where the translation cache is stored. Use ``null`` to disable this cache.