fixed spelling

This commit is contained in:
schreifuchs 2024-01-12 13:07:14 +01:00
parent 8a22a6659d
commit 4c24d60ada
2 changed files with 4 additions and 5 deletions

View file

@ -41,15 +41,14 @@ FLAGS:
OPTIONS: OPTIONS:
-c, --compression <compression> Setting the flac compression level from 0 (fastest, least compression) to -c, --compression <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. 8 (slowest, most compression). A value larger than 8 will be Treated as 8.
Defaults to 4. Default is 4.
-d, --destination <destination> The directory where the songs will be downloaded [default: .] -d, --destination <destination> The directory where the songs will be downloaded [default: .]
-p, --password <password> Your Spotify password -p, --password <password> Your Spotify password
-u, --username <username> Your Spotify username -u, --username <username> Your Spotify username
ARGS: ARGS:
<tracks>... A list of Spotify URIs (songs, podcasts or playlists) <tracks>... 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`). 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`).

View file

@ -49,7 +49,7 @@ struct Opt {
short = "c", short = "c",
long = "compression", long = "compression",
help = "Setting the flac compression level from 0 (fastest, least compression) to 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<u32>, compression: Option<u32>,
} }