From 4846c8d3c52f77c0425a55a967fe42bb4e176c32 Mon Sep 17 00:00:00 2001 From: Moshe Weitzman Date: Wed, 15 Feb 2023 12:15:47 -0500 Subject: [PATCH] Clarify help text for user:block --- src/Drupal/Commands/core/UserCommands.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Drupal/Commands/core/UserCommands.php b/src/Drupal/Commands/core/UserCommands.php index f64ce1c632..13074a0f90 100644 --- a/src/Drupal/Commands/core/UserCommands.php +++ b/src/Drupal/Commands/core/UserCommands.php @@ -123,11 +123,11 @@ public function renderRolesCell($key, $cellData, FormatterOptions $options) * @option $mail A comma delimited list of emails to lookup (an alternative to names). * @aliases ublk,user-block * @usage drush user:block user3 - * Block the user whose name is user3 + * Block the user whose name is user3 * @usage drush user:cancel user3 --delete-content - * Block the user whose name is user3 and delete her content. + * Delete the user whose name is user3 and delete her content. * @usage drush user:cancel user3 --reassign-content - * Block the user whose name is user3 and reassign her content to the anonymous user. + * Delete the user whose name is user3 and reassign her content to the anonymous user. */ public function block(string $names = '', $options = ['uid' => self::REQ, 'mail' => self::REQ]): void {