Merge #4639
4639: Fixed missing newline on each field on "Missing structure fields". r=flodiebold a=flipbit03 Co-authored-by: Cadu <cadu.coelho@gmail.com>
This commit is contained in:
commit
6d569c32fe
@ -40,7 +40,7 @@ impl Diagnostic for MissingFields {
|
||||
fn message(&self) -> String {
|
||||
let mut buf = String::from("Missing structure fields:\n");
|
||||
for field in &self.missed_fields {
|
||||
format_to!(buf, "- {}", field);
|
||||
format_to!(buf, "- {}\n", field);
|
||||
}
|
||||
buf
|
||||
}
|
||||
@ -73,7 +73,7 @@ impl Diagnostic for MissingPatFields {
|
||||
fn message(&self) -> String {
|
||||
let mut buf = String::from("Missing structure fields:\n");
|
||||
for field in &self.missed_fields {
|
||||
format_to!(buf, "- {}", field);
|
||||
format_to!(buf, "- {}\n", field);
|
||||
}
|
||||
buf
|
||||
}
|
||||
|
@ -664,7 +664,7 @@ pub struct Foo {
|
||||
assert_debug_snapshot!(diagnostics, @r###"
|
||||
[
|
||||
Diagnostic {
|
||||
message: "Missing structure fields:\n- b",
|
||||
message: "Missing structure fields:\n- b\n",
|
||||
range: 224..233,
|
||||
severity: Error,
|
||||
fix: Some(
|
||||
|
Loading…
Reference in New Issue
Block a user