diff --git a/src/write.rs b/src/write.rs index 60d1feb..4b79255 100644 --- a/src/write.rs +++ b/src/write.rs @@ -175,8 +175,8 @@ impl Report<'_, S> { let kind_color = self.kind.color(&self.config); writeln!( w, - "{} {}", - format_args!("{}{}:", Show(code), self.kind).fg(kind_color, s), + "{}: {}", + format_args!("{}{}", Show(code), self.kind).fg(kind_color, s), Show(self.msg.as_ref()) )?;