From c293ab50a69705f8279d35c2ebcb1fedf719d434 Mon Sep 17 00:00:00 2001 From: Richard van Laak Date: Wed, 17 Oct 2018 14:00:37 +0200 Subject: [PATCH] Update StatusCommand argument descriptions --- Command/StatusCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Command/StatusCommand.php b/Command/StatusCommand.php index a4617121..eb9294ab 100644 --- a/Command/StatusCommand.php +++ b/Command/StatusCommand.php @@ -68,9 +68,9 @@ protected function configure() ->setName(self::$defaultName) ->setDescription('Show status about your translations.') ->addArgument('configuration', InputArgument::OPTIONAL, 'The configuration to use', 'default') - ->addArgument('locale', InputArgument::OPTIONAL, 'The locale ot use. If omitted, we use all configured locales.', false) + ->addArgument('locale', InputArgument::OPTIONAL, 'The locale to use. If omitted, we use all configured locales.', false) ->addOption('json', null, InputOption::VALUE_NONE, 'If we should output in Json format') - ->addOption('bundle', 'b', InputOption::VALUE_REQUIRED, 'The translations for bundle you want to check.') + ->addOption('bundle', 'b', InputOption::VALUE_REQUIRED, 'The bundle for which you want to check the translations.') ; }