Skip to content

Commit

Permalink
chore: uhh, typo
Browse files Browse the repository at this point in the history
  • Loading branch information
flbn committed Sep 4, 2023
1 parent 150bc6a commit 46a192b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/multi_dl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl<'a> Downloader<'a> {
.enumerate()
.filter(|(_, (track, root))| {
if make_path(track, root, &tf).exists() {
eprintln!("`{}` already exist, skipping", track.name);
eprintln!("`{}` already exists, skipping", track.name);
false
} else {
true
Expand Down
2 changes: 1 addition & 1 deletion src/lib/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub fn track_path(track: &Track, root: &Path, track_format: &String) -> Result<P
let file = root.join(file_name).with_extension("mp3");

if file.exists() {
bail!("{} already exist", file.display())
bail!("{} already exists", file.display())
}

Ok(file)
Expand Down

0 comments on commit 46a192b

Please sign in to comment.