Skip to content

Commit 22a4306

Browse files
Febriananda Wida Pramuditaytmimi
Febriananda Wida Pramudita
authored andcommitted
fix the logic
1 parent 4b1596f commit 22a4306

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/matches.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,12 @@ pub(crate) fn rewrite_match(
103103
let inner_attrs_str = if inner_attrs.is_empty() {
104104
String::new()
105105
} else {
106-
inner_attrs
106+
shape.indent.block_indent(context.config);
107+
let result = inner_attrs
107108
.rewrite(context, shape)
108-
.map(|s| format!("{}{}\n", nested_indent_str, s))?
109+
.map(|s| format!("{}{}\n", nested_indent_str, s))?;
110+
shape.indent.block_unindent(context.config);
111+
result
109112
};
110113

111114
let open_brace_pos = if inner_attrs.is_empty() {

0 commit comments

Comments
 (0)