From 267f4a5461850da80b2959ebbaf654b4b120f8f6 Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Sun, 14 Jan 2024 15:57:18 +0100 Subject: [PATCH] Help message for musichoard-edit artist sort are not showing (#112) Closes #111 Reviewed-on: https://git.thenineworlds.net/wojtek/musichoard/pulls/112 --- src/bin/musichoard-edit.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/musichoard-edit.rs b/src/bin/musichoard-edit.rs index 7c180e7..e534e28 100644 --- a/src/bin/musichoard-edit.rs +++ b/src/bin/musichoard-edit.rs @@ -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), }