From 8fd9e83e89ae85d9b6862787b1a58f054efc3555 Mon Sep 17 00:00:00 2001 From: Dane Powell Date: Sun, 2 Apr 2017 22:30:23 -0700 Subject: [PATCH] Typo in import error (#3251) * Typo in import error * Typo in import error --- src/Command/Config/ImportCommand.php | 2 +- src/Command/Config/ImportSingleCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command/Config/ImportCommand.php b/src/Command/Config/ImportCommand.php index 373b3d587..9b8877909 100644 --- a/src/Command/Config/ImportCommand.php +++ b/src/Command/Config/ImportCommand.php @@ -130,7 +130,7 @@ private function configImport(DrupalStyle $io, StorageComparer $storage_comparer $config_importer->import(); return true; } catch (ConfigImporterException $e) { - $message = 'The import failed due for the following reasons:' . "\n"; + $message = 'The import failed due to the following reasons:' . "\n"; $message .= implode("\n", $config_importer->getErrors()); $io->error( sprintf( diff --git a/src/Command/Config/ImportSingleCommand.php b/src/Command/Config/ImportSingleCommand.php index 713a1f924..747b68cda 100644 --- a/src/Command/Config/ImportSingleCommand.php +++ b/src/Command/Config/ImportSingleCommand.php @@ -174,7 +174,7 @@ private function configImport($io, StorageComparer $storageComparer) return true; } } catch (ConfigImporterException $e) { - $message = 'The import failed due for the following reasons:' . "\n"; + $message = 'The import failed due to the following reasons:' . "\n"; $message .= implode("\n", $configImporter->getErrors()); $io->error( sprintf(