Skip to content

Commit 76ab3c1

Browse files
Febriananda Wida Pramuditaytmimi
Febriananda Wida Pramudita
authored andcommitted
refactor if into match
1 parent 1f806d9 commit 76ab3c1

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/matches.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,9 @@ pub(crate) fn rewrite_match(
103103
let inner_attrs_str = if inner_attrs.is_empty() {
104104
String::new()
105105
} else {
106-
let shape = if context.config.version() == Version::One {
107-
shape
108-
} else {
109-
shape.block_indent(context.config.tab_spaces())
106+
let shape = match context.config.version() {
107+
Version::One => shape,
108+
_ => shape.block_indent(context.config.tab_spaces())
110109
};
111110
inner_attrs
112111
.rewrite(context, shape)

0 commit comments

Comments
 (0)