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(); } }