Skip to content

Commit 026c716

Browse files
committed
Cargo fmt
1 parent aeb3398 commit 026c716

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

src/chains.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ pub fn rewrite_chain(expr: &ast::Expr, context: &RewriteContext, shape: Shape) -
136136
};
137137
debug!(
138138
"child_shapes {:?} {:?}",
139-
first_child_shape,
140-
other_child_shape
139+
first_child_shape, other_child_shape
141140
);
142141

143142
let child_shape_iter = Some(first_child_shape)

src/items.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,7 @@ impl Rewrite for ast::Local {
4848
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
4949
debug!(
5050
"Local::rewrite {:?} {} {:?}",
51-
self,
52-
shape.width,
53-
shape.indent
51+
self, shape.width, shape.indent
5452
);
5553

5654
skip_out_of_file_lines_range!(context, self.span);
@@ -1840,9 +1838,7 @@ fn rewrite_fn_base(
18401838

18411839
debug!(
18421840
"rewrite_fn_base: one_line_budget: {}, multi_line_budget: {}, arg_indent: {:?}",
1843-
one_line_budget,
1844-
multi_line_budget,
1845-
arg_indent
1841+
one_line_budget, multi_line_budget, arg_indent
18461842
);
18471843

18481844
// Check if vertical layout was forced.

0 commit comments

Comments
 (0)