Skip to content

Commit 6fd9ef6

Browse files
committed
no need to comma delimit this, it's already space delimited
1 parent 6708d56 commit 6fd9ef6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_interface/src/passes.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -554,14 +554,14 @@ fn write_out_deps(tcx: TyCtxt<'_>, outputs: &OutputFilenames, out_filenames: &[P
554554
files.iter().all(|(_path, _file_len, hash_algo)| hash_algo.is_some()),
555555
"all files must have a checksum hash computed to output checksum hashes"
556556
);
557-
write!(file, " # ")?;
557+
write!(file, " #")?;
558558
files
559559
.iter()
560560
.filter_map(|(_path, file_len, hash_algo)| {
561561
hash_algo.map(|hash_algo| (path, file_len, hash_algo))
562562
})
563563
.try_for_each(|(_path, file_len, checksum_hash)| {
564-
write!(file, "checksum:{checksum_hash} file_len:{file_len}, ")
564+
write!(file, " checksum:{checksum_hash} file_len:{file_len}")
565565
})?;
566566
}
567567
writeln!(file)?;

0 commit comments

Comments
 (0)