Skip to content

Commit

Permalink
fix(reporter): fix missing newline before help text
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat committed Aug 10, 2021
1 parent 0c9eeef commit 9d430b6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/reporter.rs
Expand Up @@ -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(())
Expand Down

0 comments on commit 9d430b6

Please sign in to comment.