mirror of https://github.com/zkat/miette.git
fix(reporter): fix missing newline before help text
This commit is contained in:
parent
0c9eeef0d0
commit
9d430b6f47
|
|
@ -135,7 +135,9 @@ impl DiagnosticReporter for MietteReporter {
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(help) = diagnostic.help() {
|
if let Some(help) = diagnostic.help() {
|
||||||
writeln!(f, "﹦{}", help)?;
|
writeln!(f)?;
|
||||||
|
writeln!(f)?;
|
||||||
|
write!(f, "﹦{}", help)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue