Skip to content

Commit

Permalink
Typo in import error (#3251)
Browse files Browse the repository at this point in the history
* Typo in import error

* Typo in import error
  • Loading branch information
danepowell authored and jmolivas committed Apr 3, 2017
1 parent 2b5a029 commit 8fd9e83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Command/Config/ImportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion src/Command/Config/ImportSingleCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 8fd9e83

Please sign in to comment.