Fix help messages
All checks were successful
Cargo CI / Build and Test (pull_request) Successful in 1m5s
Cargo CI / Lint (pull_request) Successful in 44s

This commit is contained in:
Wojciech Kozlowski 2024-01-14 15:55:01 +01:00
parent d876b75d14
commit 69dfc55d10

View File

@ -61,9 +61,9 @@ enum ArtistCommand {
#[derive(StructOpt, Debug)] #[derive(StructOpt, Debug)]
enum SortCommand { enum SortCommand {
#[structopt(help = "Set the provided name as the artist's sort name")] #[structopt(about = "Set the provided name as the artist's sort name")]
Set(ArtistSortValue), Set(ArtistSortValue),
#[structopt(help = "Clear the artist's sort name")] #[structopt(about = "Clear the artist's sort name")]
Clear(ArtistValue), Clear(ArtistValue),
} }