From 64e5dfd3d0aa6e0cc9835e5856142a2e518c6269 Mon Sep 17 00:00:00 2001 From: Huang Rui Date: Sun, 19 Nov 2023 13:08:38 +0800 Subject: [PATCH] QSocCliWorker: Simplify 'remove' subcommand description - Shortened the description for the 'remove' subcommand in parseModuleImport() to match the length of the 'import' description for better consistency and readability. - Adjusted wording to keep it concise while maintaining clarity of the command's functionality. Signed-off-by: Huang Rui --- src/cli/qsoccliparsemodule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/qsoccliparsemodule.cpp b/src/cli/qsoccliparsemodule.cpp index ab944e3..9d714d9 100644 --- a/src/cli/qsoccliparsemodule.cpp +++ b/src/cli/qsoccliparsemodule.cpp @@ -14,7 +14,7 @@ bool QSocCliWorker::parseModule(const QStringList &appArguments) QCoreApplication::translate( "main", "import Import Verilog modules into module libraries.\n" - "remove Remove selected modules from specified libraries.\n" + "remove Remove modules from specified libraries.\n" "list List all modules within designated libraries.\n" "show Show detailed information on a chosen module."), "module [subcommand options]");