Separate errors in an error stack better
This commit is contained in:
parent
ed3279c4f1
commit
8274492b95
|
|
@ -66,7 +66,7 @@ impl fmt::Display for ErrorStack {
|
|||
let mut first = true;
|
||||
for err in &self.0 {
|
||||
if !first {
|
||||
fmt.write_str(", ")?;
|
||||
fmt.write_str("\n--\n")?;
|
||||
}
|
||||
write!(fmt, "{}", err)?;
|
||||
first = false;
|
||||
|
|
|
|||
Loading…
Reference in New Issue