Skip to content

Commit 494560c

Browse files
committed
fixes for rustfmt + ast visitor
1 parent a3be235 commit 494560c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/closures.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ fn rewrite_closure_fn_decl(
264264
""
265265
};
266266
let is_async = if asyncness.is_async() { "async " } else { "" };
267-
let mover = if capture == ast::CaptureBy::Value {
267+
let mover = if matches!(capture, ast::CaptureBy::Value { .. }) {
268268
"move "
269269
} else {
270270
""

src/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ pub(crate) fn format_expr(
368368
}
369369
}
370370
ast::ExprKind::Gen(capture_by, ref block, ref kind) => {
371-
let mover = if capture_by == ast::CaptureBy::Value {
371+
let mover = if matches!(capture_by, ast::CaptureBy::Value { .. }) {
372372
"move "
373373
} else {
374374
""

0 commit comments

Comments
 (0)