From d777f36ffced045951e856ab22ed71591582147b Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Sat, 22 Apr 2023 18:28:19 +0200 Subject: [PATCH] fix typo (#3657) --- src/Console/Command/AbstractProcessCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Command/AbstractProcessCommand.php b/src/Console/Command/AbstractProcessCommand.php index b759745e334..58494fc0b3f 100644 --- a/src/Console/Command/AbstractProcessCommand.php +++ b/src/Console/Command/AbstractProcessCommand.php @@ -70,7 +70,7 @@ protected function configure(): void $this->addOption(Option::MEMORY_LIMIT, null, InputOption::VALUE_REQUIRED, 'Memory limit for process'); - $this->addOption(Option::CLEAR_CACHE, null, InputOption::VALUE_NONE, 'Clear unchaged files cache'); + $this->addOption(Option::CLEAR_CACHE, null, InputOption::VALUE_NONE, 'Clear unchanged files cache'); $this->addOption(Option::PARALLEL_PORT, null, InputOption::VALUE_REQUIRED); $this->addOption(Option::PARALLEL_IDENTIFIER, null, InputOption::VALUE_REQUIRED);