Fixed typo in main.rs

Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
This commit is contained in:
Louis Vallat 2021-11-02 09:29:21 +01:00
parent 1fbfa1b122
commit f77667b44f
No known key found for this signature in database
GPG Key ID: 0C87282F76E61283

View File

@ -106,11 +106,11 @@ async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
.long("description")
.value_name("DESCRIPTION")
.required(true)
.help("The description to set for the albums to rename. Must be under 1000 characters long."))
.help("The description to set for the album. Must be under 1000 characters long."))
.arg(Arg::with_name("id")
.short("i")
.long("id")
.help("The album ID to rename.")
.help("The album ID to set the description for.")
.required(true)
.value_name("ID"))
);