aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@code-rhapsodie.fr>2019-07-10 09:59:07 +0200
committerNicolas LÅ“uillet <nicolas@code-rhapsodie.fr>2019-07-10 09:59:07 +0200
commit879f8eaa1857f250a8defe058f3bcf23d4045508 (patch)
tree8b5a18917cc661c322690d1b72b5c1a47c2749f9
parentff8fe22f2e00f91c08efb161e4de52bc4b401880 (diff)
downloadwallabag-879f8eaa1857f250a8defe058f3bcf23d4045508.tar.gz
wallabag-879f8eaa1857f250a8defe058f3bcf23d4045508.tar.zst
wallabag-879f8eaa1857f250a8defe058f3bcf23d4045508.zip
Fixed typo in wallabag name
-rw-r--r--src/Wallabag/CoreBundle/Command/InstallCommand.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Command/InstallCommand.php b/src/Wallabag/CoreBundle/Command/InstallCommand.php
index c58ae2b5..50e19f0c 100644
--- a/src/Wallabag/CoreBundle/Command/InstallCommand.php
+++ b/src/Wallabag/CoreBundle/Command/InstallCommand.php
@@ -54,7 +54,7 @@ class InstallCommand extends ContainerAwareCommand
54 54
55 $this->io = new SymfonyStyle($input, $output); 55 $this->io = new SymfonyStyle($input, $output);
56 56
57 $this->io->title('Wallabag installer'); 57 $this->io->title('wallabag installer');
58 58
59 $this 59 $this
60 ->checkRequirements() 60 ->checkRequirements()
@@ -63,7 +63,7 @@ class InstallCommand extends ContainerAwareCommand
63 ->setupConfig() 63 ->setupConfig()
64 ; 64 ;
65 65
66 $this->io->success('Wallabag has been successfully installed.'); 66 $this->io->success('wallabag has been successfully installed.');
67 $this->io->success('You can now configure your web server, see https://doc.wallabag.org'); 67 $this->io->success('You can now configure your web server, see https://doc.wallabag.org');
68 } 68 }
69 69