Fixed typo in wallabag name

This commit is contained in:
Nicolas Lœuillet 2019-07-10 09:59:07 +02:00
parent ff8fe22f2e
commit 879f8eaa18
No known key found for this signature in database
GPG key ID: 4D69087A2B446FAA

View file

@ -54,7 +54,7 @@ class InstallCommand extends ContainerAwareCommand
$this->io = new SymfonyStyle($input, $output);
$this->io->title('Wallabag installer');
$this->io->title('wallabag installer');
$this
->checkRequirements()
@ -63,7 +63,7 @@ class InstallCommand extends ContainerAwareCommand
->setupConfig()
;
$this->io->success('Wallabag has been successfully installed.');
$this->io->success('wallabag has been successfully installed.');
$this->io->success('You can now configure your web server, see https://doc.wallabag.org');
}