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, }