summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2025-08-09 14:43:21 +0100
committerNaz <ndpm13@ch-naseem.com>2025-08-09 14:43:21 +0100
commite09d31a4db858f8c4089270fa9ada198c3fee131 (patch)
tree2e8a426eea235821cd8863982a266d175c8b349f
parent68613dc59c1b57271831f832663d3afb1d6cf984 (diff)
📚docs: add alias information to command help text
-rw-r--r--src/args.rs6
1 files changed, 3 insertions, 3 deletions
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,
}