Skip to content

Commit 4a72260

Browse files
Alexander Grafw00fz
authored andcommitted
Update spelling, fix class comment. (#132)
1 parent 1443cde commit 4a72260

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cli/InitCommand.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use Grav\Plugin\GitSync\GitSync;
55

66
/**
7-
* Class Initommand
7+
* Class InitCommand
88
*
99
* @package Grav\Plugin\Console
1010
*/
@@ -15,7 +15,7 @@ protected function configure()
1515
$this
1616
->setName('init')
1717
->setDescription('Initializes your git repository')
18-
->setHelp('The <info>init</info> command runs the same git commands as the onAdminAfterSave function. Use this to manually initialise git-sync (useful for automated deployments).')
18+
->setHelp('The <info>init</info> command runs the same git commands as the onAdminAfterSave function. Use this to manually initialize git-sync (useful for automated deployments).')
1919
;
2020
}
2121

@@ -29,12 +29,12 @@ protected function serve()
2929
$this->output->writeln('');
3030

3131
if (!$repository) {
32-
$this->output->writeln('<red>ERROR:</red> No repository has been configured');
32+
$this->output->writeln('<red>ERROR:</red> No repository has been configured!');
3333
}
3434

35-
$this->output->writeln('Initialising <cyan>' . $repository . '</cyan>');
35+
$this->output->writeln('Initializing <cyan>' . $repository . '</cyan>');
3636

37-
$this->output->write('Starting Initialisation...');
37+
$this->output->write('Starting initialization...');
3838

3939
$plugin->initializeRepository();
4040
$plugin->setUser();

0 commit comments

Comments
 (0)