From 607de4246b7394a3e6ba0cf7f5122ca6ea158c67 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 21 Jan 2021 13:43:09 +0100 Subject: [PATCH] fix typo --- 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 1176dbad94..9b300ef021 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -355,7 +355,7 @@ return [ ], [ 'name' => '_APP_FUNCTIONS_ENV_ALLOWLIST', - '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, support environments are: ' . \implode(', ', \array_keys(Config::getParam('providers'))), + '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('providers'))), 'introduction' => '0.7.0', 'default' => '', 'required' => false,