Help message for musichoard-edit artist sort are not showing (#112)
All checks were successful
Cargo CI / Build and Test (push) Successful in 1m3s
Cargo CI / Lint (push) Successful in 43s
Cargo CI / Build and Test (pull_request) Successful in 1m5s
Cargo CI / Lint (pull_request) Successful in 43s

Closes #111

Reviewed-on: #112
This commit is contained in:
Wojciech Kozlowski 2024-01-14 15:57:18 +01:00
parent d876b75d14
commit 267f4a5461

View File

@ -61,9 +61,9 @@ enum ArtistCommand {
#[derive(StructOpt, Debug)]
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),
#[structopt(help = "Clear the artist's sort name")]
#[structopt(about = "Clear the artist's sort name")]
Clear(ArtistValue),
}