From a708dea9cd7019d2e4cc410b01184aa0784dd818 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Wed, 2 Jun 2021 17:26:05 +0200 Subject: [PATCH] Fix typo Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com> --- core/Command/Db/AddMissingIndices.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Command/Db/AddMissingIndices.php b/core/Command/Db/AddMissingIndices.php index f41e923fea..11155afb4f 100644 --- a/core/Command/Db/AddMissingIndices.php +++ b/core/Command/Db/AddMissingIndices.php @@ -94,7 +94,7 @@ class AddMissingIndices extends Command { $indexes = $this->indexManager->getPending(); foreach ($indexes as $index) { - $output->writeln('Adding additonal ' . $index->getName() . ' index to the ' . $index->getTable() . ' this can take some time..'); + $output->writeln('Adding additional ' . $index->getName() . ' index to the ' . $index->getTable() . ' this can take some time …'); $index->add(); } }