From 955728d4e6b86ddc717c93313e662a3b35940696 Mon Sep 17 00:00:00 2001 From: Moshe Weitzman Date: Wed, 13 Mar 2024 08:49:41 -0400 Subject: [PATCH] Shorter command descriptions (#5907) --- src/Commands/config/ConfigCommands.php | 2 +- src/Commands/core/MkCommands.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Commands/config/ConfigCommands.php b/src/Commands/config/ConfigCommands.php index 3817ec9ffa..8cfbb75771 100644 --- a/src/Commands/config/ConfigCommands.php +++ b/src/Commands/config/ConfigCommands.php @@ -277,7 +277,7 @@ public function delete($config_name, $key = null): void } /** - * Display status of configuration (differences between the filesystem configuration and database configuration). + * Display status of configuration (differences between the filesystem and database). */ #[CLI\Command(name: self::STATUS, aliases: ['cst', 'config-status'])] #[CLI\Option(name: 'state', description: 'A comma-separated list of states to filter results.')] diff --git a/src/Commands/core/MkCommands.php b/src/Commands/core/MkCommands.php index ffaadf7e63..cfb471fe14 100644 --- a/src/Commands/core/MkCommands.php +++ b/src/Commands/core/MkCommands.php @@ -46,7 +46,7 @@ public static function create(ContainerInterface $container, DrushContainer $dru } /** - * Build a Markdown document for each Drush command/generator that is available on a site. + * Build a Markdown document for each available Drush command/generator. * * This command is an early step when building the www.drush.org static site. Adapt it to build a similar site listing the commands that are available on your site. Also see Drush's [Github Actions workflow](https://github.com/drush-ops/drush/blob/12.x/.github/workflows/main.yml). */