Appease clippy

This commit is contained in:
Richard Feldman 2022-02-23 21:19:02 -05:00
parent 4168fc7c6e
commit 0d037f2204
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798

View file

@ -49,7 +49,6 @@ pub fn fmt_collection<'a, 'buf, T: ExtractSpaces<'a> + Formattable>(
); );
buf.newline(); buf.newline();
buf.indent(braces_indent); buf.indent(braces_indent);
buf.push(end);
} else { } else {
// is_multiline == false // is_multiline == false
// there is no comment to add // there is no comment to add
@ -67,7 +66,7 @@ pub fn fmt_collection<'a, 'buf, T: ExtractSpaces<'a> + Formattable>(
if !items.is_empty() { if !items.is_empty() {
buf.spaces(1); buf.spaces(1);
} }
}
buf.push(end); buf.push(end);
} }
}