]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fixed typo in wallabag name
authorNicolas Lœuillet <nicolas@code-rhapsodie.fr>
Wed, 10 Jul 2019 07:59:07 +0000 (09:59 +0200)
committerNicolas Lœuillet <nicolas@code-rhapsodie.fr>
Wed, 10 Jul 2019 07:59:07 +0000 (09:59 +0200)
src/Wallabag/CoreBundle/Command/InstallCommand.php

index c58ae2b5bd0500c26af6d6379ddbf6d809af3c3c..50e19f0c7e3653b7fc72facde07c8d42b397e6e2 100644 (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');
     }