remove update field from normal Record constructor

This commit is contained in:
Folkert 2021-03-20 16:49:14 +01:00
parent 60265b5d2a
commit e0c211081a
8 changed files with 15 additions and 77 deletions

View file

@ -243,10 +243,9 @@ impl<'a> Formattable<'a> for Expr<'a> {
}
Record {
fields,
update,
final_comments,
} => {
fmt_record(buf, *update, fields, final_comments, indent);
fmt_record(buf, None, fields, final_comments, indent);
}
RecordUpdate {
fields,