summaryrefslogtreecommitdiffstats
path: root/core/command
diff options
context:
space:
mode:
authorCarla Schroder <carla@owncloud.com>2016-03-16 16:14:25 -0700
committerCarla Schroder <carla@owncloud.com>2016-03-16 16:14:25 -0700
commit0c9eaede417cce10f76c1a32b42a3f108803b0cf (patch)
tree5036b61751a0b036af4dd75f50ead84ee973bc8d /core/command
parentf3f08cf9103ed6eb227ec7f40be2bdd1f25b8fa1 (diff)
downloadnextcloud-server-0c9eaede417cce10f76c1a32b42a3f108803b0cf.tar.gz
nextcloud-server-0c9eaede417cce10f76c1a32b42a3f108803b0cf.zip
Some typo corrections in occ command output
Diffstat (limited to 'core/command')
-rw-r--r--core/command/integrity/checkapp.php2
-rw-r--r--core/command/integrity/checkcore.php2
-rw-r--r--core/command/security/removecertificate.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/core/command/integrity/checkapp.php b/core/command/integrity/checkapp.php
index 87b8eb47687..643af5285b4 100644
--- a/core/command/integrity/checkapp.php
+++ b/core/command/integrity/checkapp.php
@@ -51,7 +51,7 @@ class CheckApp extends Base {
parent::configure();
$this
->setName('integrity:check-app')
- ->setDescription('Check an app integrity using a signature.')
+ ->setDescription('Check integrity of an app using a signature.')
->addArgument('appid', null, InputArgument::REQUIRED, 'Application to check')
->addOption('path', null, InputOption::VALUE_OPTIONAL, 'Path to application. If none is given it will be guessed.');
}
diff --git a/core/command/integrity/checkcore.php b/core/command/integrity/checkcore.php
index ac29937e2ed..460a78e4da7 100644
--- a/core/command/integrity/checkcore.php
+++ b/core/command/integrity/checkcore.php
@@ -49,7 +49,7 @@ class CheckCore extends Base {
parent::configure();
$this
->setName('integrity:check-core')
- ->setDescription('Check a core integrity using a signature.');
+ ->setDescription('Check integrity of core code using a signature.');
}
/**
diff --git a/core/command/security/removecertificate.php b/core/command/security/removecertificate.php
index 14b427511ac..68e409aee1c 100644
--- a/core/command/security/removecertificate.php
+++ b/core/command/security/removecertificate.php
@@ -43,7 +43,7 @@ class RemoveCertificate extends Base {
protected function configure() {
$this
->setName('security:certificates:remove')
- ->setDescription('import trusted certificate')
+ ->setDescription('remove trusted certificate')
->addArgument(
'name',
InputArgument::REQUIRED,