Merge pull request #23336 from owncloud/occ-typos

Some typo corrections in occ command output
This commit is contained in:
Thomas Müller 2016-03-17 09:31:11 +01:00
commit b5c56a7322
4 changed files with 4 additions and 4 deletions

View File

@ -69,7 +69,7 @@ class TransferOwnership extends Command {
protected function configure() { protected function configure() {
$this $this
->setName('files:transfer-ownership') ->setName('files:transfer-ownership')
->setDescription('All files and folders are move to another user - shares are moved as well.') ->setDescription('All files and folders are moved to another user - shares are moved as well.')
->addArgument( ->addArgument(
'source-user', 'source-user',
InputArgument::REQUIRED, InputArgument::REQUIRED,

View File

@ -51,7 +51,7 @@ class CheckApp extends Base {
parent::configure(); parent::configure();
$this $this
->setName('integrity:check-app') ->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') ->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.'); ->addOption('path', null, InputOption::VALUE_OPTIONAL, 'Path to application. If none is given it will be guessed.');
} }

View File

@ -49,7 +49,7 @@ class CheckCore extends Base {
parent::configure(); parent::configure();
$this $this
->setName('integrity:check-core') ->setName('integrity:check-core')
->setDescription('Check a core integrity using a signature.'); ->setDescription('Check integrity of core code using a signature.');
} }
/** /**

View File

@ -43,7 +43,7 @@ class RemoveCertificate extends Base {
protected function configure() { protected function configure() {
$this $this
->setName('security:certificates:remove') ->setName('security:certificates:remove')
->setDescription('import trusted certificate') ->setDescription('remove trusted certificate')
->addArgument( ->addArgument(
'name', 'name',
InputArgument::REQUIRED, InputArgument::REQUIRED,