Update help text

This commit is contained in:
Mateusz Słodkowicz 2024-03-14 19:54:26 +01:00
parent f052452a30
commit 4974abef37
Signed by: materus
GPG Key ID: 28D140BCA60B4FD1
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ Options:
-r, --recreate-cache Recrate cache
-i, --interactive Interactive mode
-l, --list List currencies
-L, --list-rates <LIST_RATES> List currencies
-L, --list-rates <LIST_RATES> List exchange rate for currency
-h, --help Print help
```

View File

@ -37,7 +37,7 @@ struct Cli
#[arg(short, long)]
list: bool,
/// List currencies
/// List exchange rate for currency
#[arg(short = 'L', long = "list-rates")]
list_rates: Option<String>,
}