diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-08-26 20:21:53 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-08-26 20:21:53 +0200 |
| commit | 3f165f5a118a097758942d534f2e32d6aa889981 (patch) | |
| tree | 5dc006fd75cccf208aa9f56341bc7e412b78449d /crates | |
| parent | feat(yt/commands/subs): Implement disabling subscriptions (diff) | |
| download | yt-3f165f5a118a097758942d534f2e32d6aa889981.zip | |
fix(yt/commands/download): Fix typo
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/yt/src/commands/download/implm/download/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/yt/src/commands/download/implm/download/mod.rs b/crates/yt/src/commands/download/implm/download/mod.rs index 876d6e6..ab9de80 100644 --- a/crates/yt/src/commands/download/implm/download/mod.rs +++ b/crates/yt/src/commands/download/implm/download/mod.rs @@ -82,7 +82,7 @@ impl CurrentDownload { video.set_download_path(&result, &mut ops); ops.commit(app) .await - .with_context(|| format!("Failed to committ download of video: '{}'", video.title))?; + .with_context(|| format!("Failed to commit download of video: '{}'", video.title))?; info!( "Video '{}' was downlaoded to path: {}", |
