Skip to content

Commit fe11717

Browse files
lqdcompiler-errors
authored andcommitted
the return of format's last theorem
there were newline conjectures in the margins
1 parent 1739365 commit fe11717

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/formality-core/src/judgment/proven_set.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -502,11 +502,11 @@ impl<T: Debug> std::fmt::Display for ProvenSet<T> {
502502
match &self.data {
503503
Data::Failure(err) => std::fmt::Display::fmt(err, f),
504504
Data::Success(set) => {
505-
write!(f, "{{\n")?;
505+
writeln!(f, "{{")?;
506506
for item in set {
507-
write!(f, "{},\n", indent(format!("{item:?}")))?;
507+
writeln!(f, "{},", indent(format!("{item:?}")))?;
508508
}
509-
write!(f, "}}\n")?;
509+
writeln!(f, "}}")?;
510510
Ok(())
511511
}
512512
}

0 commit comments

Comments
 (0)