From 4974abef378963a4dcd3beb12f3f935f072b2281 Mon Sep 17 00:00:00 2001 From: materus Date: Thu, 14 Mar 2024 19:54:26 +0100 Subject: [PATCH] Update help text --- README.md | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 544a4be..d827598 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Options: -r, --recreate-cache Recrate cache -i, --interactive Interactive mode -l, --list List currencies - -L, --list-rates List currencies + -L, --list-rates List exchange rate for currency -h, --help Print help ``` diff --git a/src/main.rs b/src/main.rs index c22a33c..4be477b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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, }