From 03ccfd326d708e4d78149710b7fedf1b5db167e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=8Ceslav=20Przywara?= Date: Tue, 19 Nov 2024 17:55:06 +0100 Subject: [PATCH] [BUGFIX] Fix spelling in BrotliGenerator.php --- Classes/Generator/BrotliGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Generator/BrotliGenerator.php b/Classes/Generator/BrotliGenerator.php index 3dee6bd1097..13d2cfb8e62 100644 --- a/Classes/Generator/BrotliGenerator.php +++ b/Classes/Generator/BrotliGenerator.php @@ -46,7 +46,7 @@ protected function checkAvailable(): bool $available = \function_exists('brotli_compress'); if (!$available) { - $this->logger->error('Your server do not support Botli compression, but you enable Brotli in EXT:staticfilecache configuration'); + $this->logger->error('Your server does not support Brotli compression, but you enabled Brotli in EXT:staticfilecache configuration'); } return $available;