From e09d31a4db858f8c4089270fa9ada198c3fee131 Mon Sep 17 00:00:00 2001 From: Naz Date: Sat, 9 Aug 2025 14:43:21 +0100 Subject: =?UTF-8?q?=F0=9F=93=9Adocs:=20add=20alias=20information=20to=20co?= =?UTF-8?q?mmand=20help=20text?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/args.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/args.rs') diff --git a/src/args.rs b/src/args.rs index a7aa5c6..bcb7948 100644 --- a/src/args.rs +++ b/src/args.rs @@ -10,15 +10,15 @@ pub struct Cli { #[derive(Debug, Subcommand)] pub enum Command { - /// Installs an AppImage + /// Installs an AppImage (alias: i) #[command(name = "install", alias = "i")] Install(InstallArgs), - /// Removes an AppImage + /// Removes an AppImage (alias: rm) #[command(name = "remove", alias = "rm")] Remove(RemoveArgs), - /// List the installed AppImages + /// List the installed AppImages (alias: ls) #[command(name = "list", alias = "ls")] List, } -- cgit v1.2.3