From 284236ab17be104a666715c4c2bffa2d93df82f3 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Wed, 19 May 2021 18:56:44 +0300 Subject: [PATCH] Fixed docs --- app/config/variables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/variables.php b/app/config/variables.php index 156b16bf1d..7b1bf10546 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -446,7 +446,7 @@ return [ ], [ 'name' => '_APP_FUNCTIONS_RUNTIMES', - 'description' => 'This option allows you to limit the available environments for cloud functions. This option is very useful for low-cost servers to safe disk space.\n\nTo enable/activate this option, pass a list of allowed environments separated by a comma.\n\nCurrently, supported environments are: ' . \implode(', ', \array_keys(Config::getParam('runtimes'))), + 'description' => "This option allows you to limit the available environments for cloud functions. This option is very useful for low-cost servers to safe disk space.\n\nTo enable/activate this option, pass a list of allowed environments separated by a comma.\n\nCurrently, supported environments are: " . \implode(', ', \array_keys(Config::getParam('runtimes'))), 'introduction' => '0.8.0', 'default' => 'node-15.5,deno-1.8,php-8.0,python-3.9,ruby-3.0,dotnet-5.0', 'required' => false,