From 7de77b8575014e70b2f0f84b9617c09db749f6c7 Mon Sep 17 00:00:00 2001 From: yggverse Date: Sun, 15 Jun 2025 22:19:55 +0300 Subject: [PATCH] update comment --- src/storage.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/storage.rs b/src/storage.rs index fab8975..2929ff5 100644 --- a/src/storage.rs +++ b/src/storage.rs @@ -53,8 +53,7 @@ impl Storage { Ok(p.to_string_lossy().to_string()) } - /// Recursively remove all files under the `infohash` location - /// that do not match the `skip_filename` (see rqbit#408) + /// Recursively remove all files under the `infohash` location (see rqbit#408) pub fn cleanup(&self, infohash: &str, skip_filename: Option<®ex::Regex>) -> Result<()> { for e in walkdir::WalkDir::new(self.output_folder(infohash, false)?) { let e = e?;