diff --git a/crates/util/src/fs.rs b/crates/util/src/fs.rs index c6d562d15cc38531b7453d278dc8a349c9124035..3bfa0f656a65999bab423b349223cfc7988f1599 100644 --- a/crates/util/src/fs.rs +++ b/crates/util/src/fs.rs @@ -4,7 +4,7 @@ use smol::{fs, stream::StreamExt}; use crate::ResultExt; -// Removes all files and directories matching the given predicate +/// Removes all files and directories matching the given predicate pub async fn remove_matching(dir: &Path, predicate: F) where F: Fn(&Path) -> bool,