Skip to content

Commit cff3472

Browse files
authored
Rollup merge of #94341 - ChayimFriedman2:patch-1, r=Dylan-DPC
Remove a duplicate space rustfmt doesn't format `let ... else`.
2 parents 10a43d2 + 4809a6d commit cff3472

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_typeck/src/check/fn_ctxt/suggestions.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
633633
})
634634
.collect::<Result<Vec<_>, _>>();
635635

636-
let Ok(where_predicates) = where_predicates else { return };
636+
let Ok(where_predicates) = where_predicates else { return };
637637

638638
// now get all predicates in the same types as the where bounds, so we can chain them
639639
let predicates_from_where =

0 commit comments

Comments
 (0)