spaces_middle -> lines_between

This commit is contained in:
Aidan 2024-07-29 13:06:48 -04:00
parent 2529fa0721
commit ddb58a2cd5
36 changed files with 57 additions and 57 deletions

View file

@ -397,13 +397,13 @@ impl<'a> RemoveSpaces<'a> for ValueDef<'a> {
AnnotatedBody {
ann_pattern,
ann_type,
spaces_middle: _,
lines_between: _,
body_pattern,
body_expr,
} => AnnotatedBody {
ann_pattern: arena.alloc(ann_pattern.remove_spaces(arena)),
ann_type: arena.alloc(ann_type.remove_spaces(arena)),
spaces_middle: &[],
lines_between: &[],
body_pattern: arena.alloc(body_pattern.remove_spaces(arena)),
body_expr: arena.alloc(body_expr.remove_spaces(arena)),
},