Skip to content

Commit 4809a6d

Browse files
Remove a duplicate space
rustfmt doesn't format `let ... else`.
1 parent 4b043fa commit 4809a6d

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
@@ -637,7 +637,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
637637
})
638638
.collect::<Result<Vec<_>, _>>();
639639

640-
let Ok(where_predicates) = where_predicates else { return };
640+
let Ok(where_predicates) = where_predicates else { return };
641641

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

0 commit comments

Comments
 (0)