cargo fmt

This commit is contained in:
CreepySkeleton
2020-02-01 11:19:08 +03:00
parent b036f630ce
commit 9d8bcde1e5
+3 -3
View File
@@ -193,9 +193,9 @@ impl ToTokens for Diagnostic {
&self.suggestions,
));
ts.extend(
self.children.iter().map(|(start, end, msg)| {
diag_to_tokens(*start, *end, &Level::Error, &msg, &[])
}),
self.children
.iter()
.map(|(start, end, msg)| diag_to_tokens(*start, *end, &Level::Error, &msg, &[])),
);
}
}