From b2ba9fdc4cd6320f70c16f6f9c8b588490ad16dc Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Wed, 10 Jan 2024 19:34:20 +0100 Subject: [PATCH] Clearer about messages --- src/bin/mh-edit.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bin/mh-edit.rs b/src/bin/mh-edit.rs index 6025ba2..aaaf61a 100644 --- a/src/bin/mh-edit.rs +++ b/src/bin/mh-edit.rs @@ -47,9 +47,9 @@ enum ArtistCommand { Delete(ArtistValue), #[structopt(name = "musicbrainz", about = "Edit the MusicBrainz URL of an artist")] MusicBrainz(UrlCommand), - #[structopt(name = "musicbutler", about = "Edit the MusicButler URL of an artist")] + #[structopt(name = "musicbutler", about = "Edit the MusicButler URL(s) of an artist")] MusicButler(UrlCommand), - #[structopt(about = "Edit the Bandcamp URL of an artist")] + #[structopt(about = "Edit the Bandcamp URL(s) of an artist")] Bandcamp(UrlCommand), #[structopt(about = "Edit the Qobuz URL of an artist")] Qobuz(UrlCommand), @@ -63,11 +63,11 @@ struct ArtistValue { #[derive(StructOpt, Debug)] enum UrlCommand { - #[structopt(about = "Add URL(s) without overwriting existing values")] + #[structopt(about = "Add the provided URL(s) without overwriting existing values")] Add(T), #[structopt(about = "Remove the provided URL(s)")] Remove(T), - #[structopt(about = "Set the provided URL(s) overwriting any previous values")] + #[structopt(about = "Set the provided URL(s) overwriting any existing values")] Set(T), #[structopt(about = "Clear all URL(s)")] Clear(ArtistValue),