1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-28 06:26:07 +02:00

Use to_string_lossy

This commit is contained in:
mo8it 2024-03-24 18:47:27 +01:00
parent 0aeaccc3a5
commit e1375ef431

View File

@ -145,7 +145,7 @@ fn main() {
.collect::<Vec<_>>();
for exercise in &exercises {
let fname = format!("{}", exercise.path.display());
let fname = exercise.path.to_string_lossy();
let filter_cond = filters
.iter()
.any(|f| exercise.name.contains(f) || fname.contains(f));