Skip to content

Commit 597d757

Browse files
committed
lib: explicitly write down () when collecting to Result<()>
Apparently inference ran afoul of rust-lang/rust#123748
1 parent a4542e9 commit 597d757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ pub fn copy_all_spool_paths(
574574
to_copy
575575
.into_par_iter()
576576
.map(|path| copy_spool_path(&path))
577-
.collect::<Result<_>>()?;
577+
.collect::<Result<()>>()?;
578578
Ok(())
579579
}
580580

0 commit comments

Comments
 (0)