From 4c24d60ada7e8ddc6428a4ece45540311f82cb03 Mon Sep 17 00:00:00 2001 From: schreifuchs Date: Fri, 12 Jan 2024 13:07:14 +0100 Subject: [PATCH] fixed spelling --- README.md | 7 +++---- src/main.rs | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index febf70e..d11273b 100644 --- a/README.md +++ b/README.md @@ -41,15 +41,14 @@ FLAGS: OPTIONS: -c, --compression Setting the flac compression level from 0 (fastest, least compression) to - 8 (slowest, most compression). A value larger than 8 will be reated as 8. - Defaults to 4. + 8 (slowest, most compression). A value larger than 8 will be Treated as 8. + Default is 4. -d, --destination The directory where the songs will be downloaded [default: .] -p, --password Your Spotify password -u, --username Your Spotify username ARGS: - ... A list of Spotify URIs (songs, podcasts or playlists) -``` + ... A list of Spotify URIs (songs, podcasts or playlists)``` Songs and playlists must be passed as Spotify URIs or URLs (e.g. `spotify:track:123456789abcdefghABCDEF` for songs and `spotify:playlist:123456789abcdefghABCDEF` for playlists or `https://open.spotify.com/playlist/123456789abcdefghABCDEF?si=1234567890`). diff --git a/src/main.rs b/src/main.rs index 23c2cf6..06f3dbf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -49,7 +49,7 @@ struct Opt { short = "c", long = "compression", help = "Setting the flac compression level from 0 (fastest, least compression) to -8 (slowest, most compression). A value larger than 8 will be reated as 8. Defaults to 4." +8 (slowest, most compression). A value larger than 8 will be Treated as 8. Default is 4." )] compression: Option, }