fix(reporter): fix missing newline before help text

This commit is contained in:
Kat Marchán 2021-08-10 19:08:53 -04:00
parent 0c9eeef0d0
commit 9d430b6f47
No known key found for this signature in database
GPG Key ID: AEB529C08A3C7E9E
1 changed files with 3 additions and 1 deletions

View File

@ -135,7 +135,9 @@ impl DiagnosticReporter for MietteReporter {
}
if let Some(help) = diagnostic.help() {
writeln!(f, "﹦{}", help)?;
writeln!(f)?;
writeln!(f)?;
write!(f, "﹦{}", help)?;
}
Ok(())