From 69dfc55d10e80dabef2467b52d30ae7d391d3617 Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Sun, 14 Jan 2024 15:55:01 +0100 Subject: [PATCH] Fix help messages --- 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), }